ci: fix release again #74
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 | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| build-tag-release: | |
| name: Build, tag, and release | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Setup release please | |
| uses: googleapis/release-please-action@v3 | |
| id: release | |
| with: | |
| release-type: node | |
| package-name: conventional-commits-pr-action | |
| - name: Tag major version | |
| if: ${{ steps.release.outputs.release_created }} | |
| run: | | |
| git config user.name github-actions[bot] | |
| git config user.email 41898282+github-actions[bot]@users.noreply.github.com | |
| git tag -d v${{ steps.release.outputs.major }} | |
| git push origin :v${{ steps.release.outputs.major }} || true | |
| git tag -a v${{ steps.release.outputs.major }} -m "Release v${{ steps.release.outputs.major }}" | |
| git push origin v${{ steps.release.outputs.major }} |