bump version & change module name #7
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 Inspector | |
| on: | |
| push: | |
| tags: | |
| - "v*" # triggers only if push new tag version, like `0.8.4` or else | |
| jobs: | |
| build: | |
| name: GoReleaser build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out code into the Go module directory | |
| uses: actions/checkout@v3 | |
| with: | |
| fetch-depth: 0 # See: https://goreleaser.com/ci/actions/ | |
| - name: Set up Go 1.23 | |
| uses: actions/setup-go@v3 | |
| with: | |
| go-version: 1.23 | |
| id: go | |
| - name: Run GoReleaser | |
| uses: goreleaser/goreleaser-action@v3 | |
| with: | |
| version: latest | |
| args: release | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GO_RELEASER_GITHUB_TOKEN }} |