docs(readme): vertically center icon with heading text #23
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 | |
| jobs: | |
| release-please: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: googleapis/release-please-action@v4 | |
| with: | |
| # Fine-scoped PAT so the tag push isn't made by GITHUB_TOKEN — | |
| # GitHub suppresses workflow triggers from GITHUB_TOKEN-made | |
| # events (anti-infinite-loop), which would otherwise stop | |
| # release.yml from firing on the tag and we'd have to | |
| # workflow_dispatch the build by hand. See the v0.2.0 release | |
| # for the motivating incident. | |
| token: ${{ secrets.RELEASE_PLEASE_TOKEN }} | |
| config-file: release-please-config.json | |
| manifest-file: .release-please-manifest.json |