Skip to content

Bump to go1.22 (#594) #65

Bump to go1.22 (#594)

Bump to go1.22 (#594) #65

Workflow file for this run

name: goreleaser
on:
push:
branches:
- 'test-goreleaser/**'
tags:
- 'v*'
jobs:
goreleaser:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: |
git fetch --prune --unshallow
- name: Generate version
run: echo "VERSION=$(git describe --always --tags --dirty)" >> $GITHUB_ENV
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- name: (dry-run) GoReleaser
if: startsWith(github.ref_name, 'test-goreleaser')
uses: goreleaser/goreleaser-action@v6
with:
version: latest
args: release --skip=validate,publish
- name: Run GoReleaser
if: startsWith(github.ref_name, 'test-goreleaser') != true
uses: goreleaser/goreleaser-action@v6
with:
version: latest
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
VERSION: ${{ env.VERSION }}