Merge pull request #248 from canonical/fix-publish-workflow #255
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: release | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
- "release-**" | |
jobs: | |
release-please: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: google-github-actions/release-please-action@4c5670f886fe259db4d11222f7dff41c1382304d # v3 | |
with: | |
release-type: simple | |
package-name: "" | |
default-branch: main | |
pull-request-title-pattern: "ci: release ${version}" | |
token: ${{ secrets.PAT_TOKEN }} | |
extra-files: | | |
rockcraft.yaml | |
internal/version/const.go | |
id: release | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 | |
- name: Workaround for https://github.com/googleapis/release-please/issues/922 | |
if: ${{ steps.release.outputs.pr != '' }} | |
run: | | |
echo "Closing and reopening PR to trigger checks" | |
gh pr close ${{ fromJSON(steps.release.outputs.pr).number }} || true | |
gh pr reopen ${{ fromJSON(steps.release.outputs.pr).number }} || true | |
gh pr merge --auto --merge ${{ fromJSON(steps.release.outputs.pr).number }} || true | |
env: | |
GITHUB_TOKEN: ${{ secrets.PAT_TOKEN }} |