Skip to content

Commit

Permalink
fix: Fix job condition
Browse files Browse the repository at this point in the history
  • Loading branch information
kekonn committed Mar 21, 2024
1 parent a05aeda commit 2679f04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
build-release:
needs:
- plan
if: ${{ fromJson(needs.plan.outputs.versionManifest != null && github.event_name == 'release' }}
if: ${{ fromJson(needs.plan.outputs.versionManifest) != null && github.event_name == 'release' }}
name: Build for (${{ matrix.os }})
runs-on: ubuntu-latest
strategy:
Expand Down

0 comments on commit 2679f04

Please sign in to comment.