Skip to content

fix: add go patch version 1.22.0 to go.mod for toolchain version (#107) #10

fix: add go patch version 1.22.0 to go.mod for toolchain version (#107)

fix: add go patch version 1.22.0 to go.mod for toolchain version (#107) #10

Workflow file for this run

name: Release
on:
push:
tags: [ 'v*' ]
permissions:
contents: write
jobs:
goreleaser:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 'stable'
- name: Install dependencies
run: |
sudo apt update && sudo apt install -y libcryptsetup-dev
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v5
with:
distribution: goreleaser
version: latest
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}