Skip to content

Commit

Permalink
Fix Workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
rohitsangwan01 committed Aug 5, 2024
1 parent 644b6b6 commit a77c224
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/release_builds.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
workflow_dispatch:
inputs:
platform:
description: "Platform"
required: true
type: choice
options:
Expand All @@ -15,7 +16,7 @@ on:
jobs:
# Runs on Linux x64
linux:
if: {{github.event.inputs.platform == 'linux' || github.event.inputs.platform == 'all'}}
if: ${{ github.event.inputs.platform == 'linux' || github.event.inputs.platform == 'all' }}
runs-on: ubuntu-22.04
steps:
- name: Git Checkout
Expand All @@ -39,7 +40,7 @@ jobs:

# Runs on Windows x64
windows:
if: {{github.event.inputs.platform == 'windows' || github.event.inputs.platform == 'all'}}
if: ${{github.event.inputs.platform == 'windows' || github.event.inputs.platform == 'all'}}
runs-on: windows-latest
steps:
- name: Git Checkout
Expand All @@ -59,7 +60,7 @@ jobs:

# Runs on Macos Arm64
macos:
if: {{github.event.inputs.platform == 'macos' || github.event.inputs.platform == 'all'}}
if: ${{github.event.inputs.platform == 'macos' || github.event.inputs.platform == 'all'}}
runs-on: macos-latest
steps:
- name: Git Checkout
Expand Down

0 comments on commit a77c224

Please sign in to comment.