Skip to content

Commit

Permalink
ci(github): flip if statement on release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
tofuuudon committed Oct 21, 2024
1 parent bee0194 commit 7341a46
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
name: Build and upload ${{ matrix.platform.target }}
runs-on: ${{ matrix.platform.os }}
needs: release-please
if: ${{ needs.release-please.outputs.releases_created == 'false' }}
if: ${{ needs.release-please.outputs.releases_created == 'true' }}
env:
TAG_NAME: ${{ needs.release-please.outputs.major }}.${{ needs.release-please.outputs.minor }}.${{ needs.release-please.outputs.patch }}
strategy:
Expand Down

0 comments on commit 7341a46

Please sign in to comment.