Skip to content

Docs & demos for v0.9.x #13

Docs & demos for v0.9.x

Docs & demos for v0.9.x #13

Workflow file for this run

name: release
on:
push:
tags:
- "v*"
env:
GO_VERSION: 1.21.x
permissions:
contents: write
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
- uses: goreleaser/goreleaser-action@v5
with:
distribution: goreleaser
version: latest
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}