chore(main): release 0.7.2 (#34) #5
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: Manage Release PR | |
| on: # yamllint disable-line rule:truthy | |
| push: | |
| branches: [main] | |
| jobs: | |
| release-please: | |
| name: Open/update the release PR | |
| runs-on: ubuntu-latest | |
| steps: | |
| - | |
| uses: actions/checkout@v7 | |
| with: | |
| fetch-tags: true | |
| - | |
| # skip-github-release: this only ever manages the version-bump PR | |
| # (manifest/CHANGELOG.md/mix.exs) - it never creates a tag or | |
| # GitHub Release. release.yaml does that itself, atomically, once | |
| # this PR merges and binaries are already built - see its own | |
| # comments for why. | |
| uses: googleapis/release-please-action@v5 | |
| with: | |
| config-file: .release-please-config.json | |
| manifest-file: .release-please-manifest.json | |
| token: ${{ secrets.RELEASE_PLEASE_TOKEN }} | |
| skip-github-release: true |