chore: bump alpha #5
Workflow file for this run
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: Create GitHub release | |
| # Create a GitHub release when a tag is pushed | |
| on: | |
| push: | |
| tags: | |
| - 'v*' | |
| jobs: | |
| build: | |
| name: Create GitHub release | |
| runs-on: ubuntu-latest | |
| env: | |
| GH_TOKEN: ${{ github.token }} | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Set up git-cliff | |
| uses: kenji-miyake/setup-git-cliff@v1 | |
| - name: Build Changelog URL and create release | |
| run: | | |
| TAG_NAME=${{ github.ref_name }} | |
| NOTES=$(git-cliff --latest) | |
| gh release create "$TAG_NAME" --verify-tag --title "$TAG_NAME" --notes "$NOTES" |