Skip to content

Commit

Permalink
fix: release created condition in CI
Browse files Browse the repository at this point in the history
Signed-off-by: Tom Plant <[email protected]>
  • Loading branch information
pl4nty committed Oct 15, 2024
1 parent 131d363 commit eb7eb6a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ jobs:
release:
needs:
- release-please
if: needs.release-please.outputs.releases_created || startsWith(github.ref, 'refs/tags/')
if: ${{ needs.release-please.outputs.releases_created == 'true' || startsWith(github.ref, 'refs/tags/') }}
runs-on: ubuntu-latest
permissions:
contents: write
Expand Down

0 comments on commit eb7eb6a

Please sign in to comment.