Skip to content

packaging: GoReleaser for apt (.deb) and brew (self-hosted tap), no rpm #20

packaging: GoReleaser for apt (.deb) and brew (self-hosted tap), no rpm

packaging: GoReleaser for apt (.deb) and brew (self-hosted tap), no rpm #20

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' }
- uses: goreleaser/goreleaser-action@v6
with:
version: '~> v2'
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
TAP_TOKEN: ${{ secrets.TAP_TOKEN }}