Skip to content

Release

Release #12

Workflow file for this run

on:
workflow_run:
workflows: ["CI"]
types:
- completed
branches:
- main
name: Release
jobs:
release:
if: github.event.workflow_run.conclusion == 'success' && startsWith(github.event.workflow_run.head_branch, 'refs/tags/v')
name: Release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
with:
fetch-depth: 0
- uses: cashapp/activate-hermit@v1
- run: goreleaser release --fail-fast
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}