Skip to content

Release

Release #159

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@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
with:
fetch-depth: 0
- uses: cashapp/activate-hermit@e49f5cb4dd64ff0b0b659d1d8df499595451155a # v1
- run: goreleaser release --fail-fast
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}