Skip to content

Escaping the release notes #9

Escaping the release notes

Escaping the release notes #9

Workflow file for this run

# .github/workflows/release.yml
name: Release
on:
push:
tags:
- 'v*'
jobs:
go-build:
uses: ./.github/workflows/go.yml
release:
needs: go-build
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/[email protected]
with:
go-version: '1.23'
cache: true
cache-dependency-path: go.sum
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v6
with:
distribution: goreleaser
version: latest
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}