Merge pull request #184 from Eroge-Abyss/release-please--branches--ma… #54
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
| on: | |
| push: | |
| branches: | |
| - main | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| name: release-please | |
| jobs: | |
| release-please: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: googleapis/release-please-action@v4 | |
| with: | |
| # This tells it to handle both Rust and Node | |
| manifest-config: .release-please-manifest.json | |
| config-file: release-please-config.json | |
| # Use a PAT so that the tag push triggers the release.yml workflow. | |
| # GITHUB_TOKEN does not trigger downstream workflows by design. | |
| token: ${{ secrets.RELEASE_PLEASE_TOKEN }} | |
| permissions: | |
| pull-requests: write | |
| contents: write |