Skip to content

Commit

Permalink
ci(deploy): Fix the if condition syntax (again, and again)
Browse files Browse the repository at this point in the history
  • Loading branch information
jontze committed Jun 10, 2024
1 parent d3f7c81 commit ab9eb83
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy_example.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,10 @@ jobs:
- name: Install Dependencies
run: npm ci
- name: Build (always)
if: ${{ github.event.inputs.force == true }}
if: ${{ inputs.force }}
run: npx nx run-many --target=build --all --parallel
- name: Build (if affected)
if: ${{ github.event.inputs.force != true }}
if: ${{ inputs.force != true }}
run: npx nx affected -t build
- name: Check if folder exists and set output
id: dist-check
Expand Down

0 comments on commit ab9eb83

Please sign in to comment.