Skip to content

chore(deps): update golangci/golangci-lint-action action to v5 #18

chore(deps): update golangci/golangci-lint-action action to v5

chore(deps): update golangci/golangci-lint-action action to v5 #18

Workflow file for this run

name: Release
on:
push:
tags:
- "v[0-9]+.[0-9]+.[0-9]+-?[a-z0-9]*"
jobs:
build:
name: Release
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0 # See: https://goreleaser.com/ci/actions/
- name: Install Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
check-latest: true
- name: Create release
uses: goreleaser/goreleaser-action@v5
with:
version: latest
args: release --clean --config .github/goreleaser.yml
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}