Skip to content

Add GoReleaser config and GitHub Actions release workflow #1

Add GoReleaser config and GitHub Actions release workflow

Add GoReleaser config and GitHub Actions release workflow #1

Workflow file for this run

name: Release
on:
workflow_dispatch:
inputs:
tag:
description: 'Git tag to release (e.g., v2.2.0)'
required: true
type: string
push:
tags:
- "v*"
permissions:
contents: write
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 'stable'
- name: Determine version
run: |
if [ "${{ github.event_name }}" = "workflow_dispatch" ]; then
echo "GORELEASER_CURRENT_TAG=${{ inputs.tag }}" >> "$GITHUB_ENV"
fi
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v7
with:
distribution: goreleaser
version: "~> v2"
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}