Skip to content

Merge pull request #17 from handlename/tagpr-from-v0.2.0 #3

Merge pull request #17 from handlename/tagpr-from-v0.2.0

Merge pull request #17 from handlename/tagpr-from-v0.2.0 #3

Workflow file for this run

name: release
on:
push:
branches:
- "!**"
tags:
- "v[0-9]+.[0-9]+.[0-9]+"
workflow_dispatch: ~
jobs:
release:
name: release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
cache-dependency-path: '**/go.sum'
- name: run goreleaser
uses: goreleaser/goreleaser-action@v5
with:
version: latest
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GH_PAT }}