Promote v0.2.0 #2
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: Promote | |
| run-name: "Promote ${{ github.ref_name }}" | |
| on: | |
| push: | |
| tags: | |
| - "v*" | |
| jobs: | |
| create-release: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| # NOTE: We explicitly set the refs otherwise the tag | |
| # annotations content is not fetched | |
| # See: https://github.com/actions/checkout/issues/882 | |
| ref: ${{ github.ref }} | |
| - uses: softprops/action-gh-release@v2 | |
| with: | |
| name: Go-errors ${{ github.ref_name }} | |
| tag_name: ${{ github.ref_name }} | |
| generate_release_notes: true | |
| # We consider pre-releases if the tag contains a hyphen | |
| # e.g. v1.2.3-alpha.0 | |
| prerelease: ${{ contains(github.ref_name, '-') }} | |
| draft: false | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |