Skip to content

Update Go to 1.21 and update packages (#37) #25

Update Go to 1.21 and update packages (#37)

Update Go to 1.21 and update packages (#37) #25

Workflow file for this run

name: goreleaser
on:
push:
tags:
- "v*"
env:
GO_VERSION: "1.21"
jobs:
goreleaser:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: ${{ env.GO_VERSION }}
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v4
with:
version: latest
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}