chore: bump (#264) #46
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: | |
push: | |
branches: | |
- main | |
permissions: | |
contents: write | |
pull-requests: write | |
jobs: | |
please: | |
if: ${{ github.ref == 'refs/heads/main' }} | |
runs-on: ubuntu-latest | |
steps: | |
# https://github.com/googleapis/release-please-action | |
# https://github.com/googleapis/release-please/blob/main/docs/customizing.md | |
- uses: googleapis/release-please-action@v4 | |
with: | |
token: ${{ secrets.RELEASE_PLEASE }} | |
config-file: .github/.release-please-config.json | |
# https://github.com/googleapis/release-please-action#package-options | |
# FIXME: breaking change? | |
# There is a mismatch with how files are written with the version string and | |
# the tag is written prefixed with "v". Might have to go away from tagging with "v". | |
manifest-file: .github/.release-please-manifest.json |