Skip to content

docs: update README with v2.0.0-beta.1 warning and roadmap #7

docs: update README with v2.0.0-beta.1 warning and roadmap

docs: update README with v2.0.0-beta.1 warning and roadmap #7

Workflow file for this run

name: Release
on:
push:
tags:
- 'v*' # Trigger on tags starting with v (e.g., v1.0.0)
permissions:
contents: write # Needed for creating releases and uploading assets
jobs:
goreleaser:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0 # Needed for changelog generation
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v5
with:
distribution: goreleaser
version: '~> v2'
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}