Skip to content
Closed
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
5 changes: 2 additions & 3 deletions .github/workflows/release-patch.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,14 @@ jobs:

- name: Configure release-please for patch releases
shell: bash
run: |
jq '.packages["."] |= (.versioning = "always-bump-patch" | .["skip-changelog"] = true)' release-please-config.json > rp.tmp
mv rp.tmp release-please-config.json
run: jq '.packages["."] |= (.versioning = "always-bump-patch" | .["skip-changelog"] = true)' release-please-config.json > release-please-config.patch.json

- name: Create release tag
id: tag
uses: googleapis/release-please-action@16a9c90856f42705d54a6fda1823352bdc62cf38 # v4.4.0
with:
target-branch: ${{ github.ref_name }}
config-file: release-please-config.patch.json

- id: release-flag
run: echo "release_created=${{ steps.tag.outputs.release_created || false }}" >> $GITHUB_OUTPUT
Expand Down