copyfail-go/.github/workflows/release.yml
kernel-sanders eaa1e40d1f feat: initial commit
Signed-off-by: kernel-sanders <1490292+kernel-sanders@users.noreply.github.com>
2026-04-29 18:53:12 -04:00

31 lines
604 B
YAML

name: goreleaser
on:
pull_request:
push:
tags:
- "*"
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: Run GoReleaser
uses: goreleaser/goreleaser-action@v6
with:
distribution: goreleaser
version: "~> v2"
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}