Skip to content

fix: correct goreleaser binary naming #16

fix: correct goreleaser binary naming

fix: correct goreleaser binary naming #16

Workflow file for this run

name: release
on:
push:
tags: ["v*.*.*"]
permissions: {contents: write}
jobs:
goreleaser:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-go@v5
with: {go-version: "1.22"}
- name: Run unit tests
run: go test ./...
- uses: goreleaser/goreleaser-action@v5
with:
version: v2.9.0
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}