Some checks failed
Go package / build (push) Has been cancelled
Restore uncommitted work from earlier sessions: DMX scene-select channels, MQTT override handling, configurable zone refresh interval, OSC additions, and matching tests and docs. Add versioning following nginx-cache-purge: VERSION file, ldflags-stamped build identifiers in info.go, Makefile, GoReleaser config, GitHub workflows, and a -version flag using the standard flag package. Claude-Session: https://claude.ai/code/session_01C5ZxhELATettecwYcNiXVN
31 lines
625 B
YAML
31 lines
625 B
YAML
on:
|
|
release:
|
|
types: [created]
|
|
|
|
permissions:
|
|
contents: write
|
|
packages: write
|
|
|
|
jobs:
|
|
goreleaser:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
-
|
|
name: Checkout
|
|
uses: actions/checkout@v7
|
|
with:
|
|
fetch-depth: 0
|
|
-
|
|
name: Set up Go
|
|
uses: actions/setup-go@v7
|
|
with:
|
|
go-version-file: 'go.mod'
|
|
-
|
|
name: Run GoReleaser
|
|
uses: goreleaser/goreleaser-action@v7
|
|
with:
|
|
distribution: goreleaser
|
|
version: '~> v2'
|
|
args: release --clean
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|