Skip to content

Removed choco build step. #39

Removed choco build step.

Removed choco build step. #39

Workflow file for this run

name: Release πŸš€
on:
push:
tags:
- "*"
jobs:
release:
name: Release
runs-on: ubuntu-latest
env:
GO_VERSION: "1.22"
CHOCOLATEY_VERSION: 2.2.0
timeout-minutes: 15
permissions:
contents: write
packages: write
attestations: write
steps:
- name: Check out the repo
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
- name: Log in to GitHub
uses: docker/login-action@f4ef78c080cd8ba55a85445d5b36e214a81df20a
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v6
with:
version: latest
args: release --clean --timeout=15m
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
CHOCO_API_KEY: ${{ secrets.CHOCO_API_KEY }}