Skip to content

Upgrade golangci-lint action #10

Upgrade golangci-lint action

Upgrade golangci-lint action #10

Workflow file for this run

name: Release
on:
push:
tags:
- "v*"
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v5
with:
go-version: "1.24"
- uses: actions/checkout@v4
- uses: golangci/golangci-lint-action@v4
- run: make test
- uses: goreleaser/goreleaser-action@v6
with:
args: release --rm-dist
env:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"