Release #11
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release | |
on: | |
push: | |
tags: | |
- "*" | |
workflow_dispatch: # Add this to enable manual triggers | |
inputs: # Optional: add inputs if you want to parameterize manual runs | |
tag_name: # Optional: allow specifying a tag when running manually | |
description: "Tag to release" | |
required: false | |
type: string | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: 1.18 | |
- name: Run GoReleaser | |
uses: goreleaser/goreleaser-action@v3 | |
with: | |
distribution: goreleaser | |
version: latest | |
args: release --rm-dist --timeout 80m | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |