Skip to content

docs: add v1.0.2 changelog entry #8

docs: add v1.0.2 changelog entry

docs: add v1.0.2 changelog entry #8

Workflow file for this run

name: Release
on:
push:
tags:
- 'v*'
jobs:
release:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v5
with:
fetch-depth: 0 # goreleaser needs full history for changelog
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version-file: go.mod
- name: Run goreleaser
uses: goreleaser/goreleaser-action@v7
with:
version: "~> v2"
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
HOMEBREW_TAP_GITHUB_TOKEN: ${{ secrets.HOMEBREW_TAP_GITHUB_TOKEN }}