Skip to content

Update Go lang and tools version to support new constructs (#223) #6

Update Go lang and tools version to support new constructs (#223)

Update Go lang and tools version to support new constructs (#223) #6

Workflow file for this run

name: goreleaser
on:
push:
tags:
- 'v[0-9]*'
workflow_dispatch:
jobs:
goreleaser:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- run: git fetch --force --tags
-
name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.22
cache: true
check-latest: true
-
name: Run GoReleaser
uses: goreleaser/goreleaser-action@v2
with:
distribution: goreleaser
version: latest
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}