chore(main): release 6.2.1 (#421) #45
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 | |
| actions: write | |
| jobs: | |
| release-please: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: googleapis/release-please-action@v4 | |
| id: release | |
| with: | |
| # Use the default GITHUB_TOKEN for authentication | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| config-file: .github/release-please-config.json | |
| manifest-file: .github/.release-please-manifest.json | |
| - name: Trigger publish workflow | |
| if: ${{ steps.release.outputs.release_created }} | |
| run: gh workflow run publish.yml --repo ${{ github.repository }} | |
| env: | |
| GH_TOKEN: ${{ github.token }} |