Skip to content

Fetch depth: 0

Fetch depth: 0 #5

Workflow file for this run

name: Release
on:
push:
tags:
- 'v*'
permissions: {}
jobs:
release:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- uses: goreleaser/goreleaser-action@v6
with:
version: '~> v2'
args: release --clean --fail-fast
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}