Skip to content

Update the version of the Go module #18

Update the version of the Go module

Update the version of the Go module #18

Workflow file for this run

name: release
on:
push:
tags:
- "v[0-9]+.[0-9]+.[0-9]+"
jobs:
goreleaser:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Unshallow
run: git fetch --prune --unshallow
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.21.x
- name: Set up UPX
run: sudo apt-get update && sudo apt-get install upx-ucl
- name: Run GoReleaser for Release
uses: goreleaser/goreleaser-action@v3
with:
version: v1.11.4
args: release --rm-dist
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}