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
9 changes: 7 additions & 2 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,13 @@ jobs:
release-please:
runs-on: ubuntu-latest
outputs:
release_created: ${{ steps.release.outputs.release_created }}
tag_name: ${{ steps.release.outputs.tag_name }}
# In manifest mode, release-please-action exposes the unprefixed
# `release_created` boolean but only a PATH-SCOPED `.--tag_name` (the
# unprefixed `tag_name` comes through empty). Fall back to the path-scoped
# key so the tag reaches CD_production; without it the deploy job's
# `startsWith(inputs.tag_name, 'v')` gate silently skips the release.
release_created: ${{ steps.release.outputs.release_created || steps.release.outputs['.--release_created'] }}
tag_name: ${{ steps.release.outputs.tag_name || steps.release.outputs['.--tag_name'] }}
steps:
# staging uses its own config/manifest pair: prerelease (rc) versioning,
# separate changelog, and its own version state so the rc line never
Expand Down
Loading