Skip to content

refactor: migrate to go #1

refactor: migrate to go

refactor: migrate to go #1

Workflow file for this run

name: Release
on:
push:
tags:
- "v*"
permissions:
contents: write
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6.0.2
with:
fetch-depth: 0
- uses: actions/setup-go@v6.3.0
with:
go-version-file: go.mod
- uses: goreleaser/goreleaser-action@v7.0.0
with:
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}