chore(deps): update taiki-e/install-action action to v2.86.7 (#25) #32
This file contains hidden or 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-please | |
| on: | |
| push: | |
| branches: [main] | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| # needed by the dispatch step below | |
| actions: write | |
| jobs: | |
| release-please: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: googleapis/release-please-action@45996ed1f6d02564a971a2fa1b5860e934307cf7 # v5.0.0 | |
| id: rp | |
| with: | |
| config-file: release-please-config.json | |
| manifest-file: .release-please-manifest.json | |
| # Tags created here use GITHUB_TOKEN, and GitHub deliberately does not | |
| # fire push/tag-triggered workflows for GITHUB_TOKEN-created refs (the | |
| # recursive-workflow guard). workflow_dispatch is the documented | |
| # exception, so kick the release build explicitly at the new tag — | |
| # ci.yaml's tag-gated jobs see refs/tags/vX.Y.Z exactly as if the tag | |
| # had been pushed by hand. | |
| - name: Trigger release build at the new tag | |
| if: ${{ steps.rp.outputs.release_created }} | |
| env: | |
| GH_TOKEN: ${{ github.token }} | |
| run: gh workflow run ci.yaml --repo "$GITHUB_REPOSITORY" --ref "${{ steps.rp.outputs.tag_name }}" |