Skip to content

Bump goreleaser/goreleaser-action from 5 to 6 #7

Bump goreleaser/goreleaser-action from 5 to 6

Bump goreleaser/goreleaser-action from 5 to 6 #7

Workflow file for this run

name: '🧑‍🏭'
on: [ push ]
permissions:
contents: write
jobs:
check:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
check-latest: true
cache: true
- run: go test -v -vet 'all' ./...
release:
if: startsWith(github.ref, 'refs/tags/v') == true
needs: check
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
check-latest: true
cache: true
- uses: goreleaser/goreleaser-action@v6
with:
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}