Skip to content

Post 5.0.0 Follow On #24

Post 5.0.0 Follow On

Post 5.0.0 Follow On #24

Workflow file for this run

name: Production Release
on:
push:
tags:
- 'v*.*.*'
jobs:
goreleaser:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Fetch All Tags
run: git fetch --tags --force --prune
- name: Setup Go
uses: actions/setup-go@v1
with:
# Go Version
go-version: '1.23.1'
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v2
with:
distribution: goreleaser
version: latest
args: release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}