Skip to content

chore: Upgrade Go version to 1.22 (#46) #11

chore: Upgrade Go version to 1.22 (#46)

chore: Upgrade Go version to 1.22 (#46) #11

Workflow file for this run

name: Release
on:
push:
tags:
- 'v*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Source
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
check-latest: true
- name: Release Binaries
uses: goreleaser/goreleaser-action@v5
with:
version: latest
args: release --clean
env:
GITHUB_TOKEN: ${{secrets.GORELEASER_TOKEN}}