fix: Corrections after last merge (#109) #27
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: Release with GoReleaser | |
| # Triggered by pushing a version tag (e.g. v1.2.3) or manually via the Actions tab. | |
| on: | |
| push: | |
| tags: | |
| - '*' | |
| workflow_dispatch: | |
| # GoReleaser needs write access to create the GitHub release and upload artifacts. | |
| permissions: | |
| contents: write | |
| jobs: | |
| release: | |
| runs-on: ubuntu-latest | |
| steps: | |
| # Full history is required for GoReleaser to generate the changelog. | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| # Go version is read from go.mod so it stays in sync with the project. | |
| - name: Set up Go | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version-file: go.mod | |
| # GoReleaser builds, packages and publishes the release. | |
| # See .goreleaser.yml for build targets and packaging configuration. | |
| - name: Run GoReleaser | |
| uses: goreleaser/goreleaser-action@v7 | |
| with: | |
| version: latest | |
| args: release --clean | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |