Skip to content

chore: Update GoReleaser args to skip Chocolatey distribution during … #3

chore: Update GoReleaser args to skip Chocolatey distribution during …

chore: Update GoReleaser args to skip Chocolatey distribution during … #3

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: Setup Go
uses: actions/setup-go@v4
with:
go-version: 1.24.1
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v6
with:
distribution: goreleaser
version: "~> v2"
args: release --clean --skip=chocolateys
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN}}
CHOCOLATEY_API_KEY: ${{ secrets.CHOCOLATEY_API_KEY }}