Files
showbridge-go/.github/workflows/release-showbridge.yaml
Joel Wetzell 69d948c931 fix tag filter
2025-12-01 19:41:30 -06:00

32 lines
631 B
YAML

name: showbridge release
on:
push:
tags:
- "*"
permissions:
contents: write
jobs:
goreleaser:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: setup go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- name: release
uses: goreleaser/goreleaser-action@v6
with:
workdir: cmd/showbridge
distribution: goreleaser
version: "v2.13.0"
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}