Skip to content

#65 - update go version (#80) #8

#65 - update go version (#80)

#65 - update go version (#80) #8

Workflow file for this run

name: release
on:
push:
tags:
- v*
env:
GO_VERSION: 1.22
jobs:
GoReeleaser:
name: release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
- uses: actions/cache@v4
if: ${{ !env.ACT }}
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ matrix.golang }}-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-${{ matrix.golang }}-
- name: GoReleaser
uses: goreleaser/goreleaser-action@v5
with:
version: v1.18.2
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GORELEASER_GITHUB_TOKEN }}