Skip to content

chore: update to go 1.22 #72

chore: update to go 1.22

chore: update to go 1.22 #72

Workflow file for this run

name: Release
on:
push:
tags:
- v*
jobs:
goreleaser:
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.22
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0 # Used to get tags to populate the version number
- name: Go module init
run: |
cd casket
go mod init casket
cd ..
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v5
with:
version: latest
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}