Skip to content

Commit

Permalink
ci: add fallback value to if condition
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Beemer <[email protected]>
  • Loading branch information
beeme1mr authored Nov 1, 2024
1 parent 62faf21 commit 159fa0e
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 @@ -33,7 +33,7 @@ jobs:

go-release:
needs: release-please
if: ${{ fromJSON(needs.release-please.outputs.release_created) }}
if: ${{ fromJSON(needs.release-please.outputs.release_created || false) }}
runs-on: ubuntu-latest
permissions:
contents: write
Expand Down

0 comments on commit 159fa0e

Please sign in to comment.