Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,9 @@ jobs:
# ─────────────────────────────────────────────────────────────
prerelease-version:
needs: release-please
if: needs.release-please.outputs.release_created == 'false' && github.event_name == 'push'
# release-please-action sets release_created to 'true' or leaves it empty
# (never the literal 'false'), so gate on != 'true', not == 'false'.
if: needs.release-please.outputs.release_created != 'true' && github.event_name == 'push'
runs-on: ubuntu-latest
permissions:
contents: write
Expand Down
Loading