Skip to content

Documentation and comments #8

Documentation and comments

Documentation and comments #8

Workflow file for this run

name: release
on:
push:
tags:
- "v*.*.*"
jobs:
tag:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v3
with:
fetch-depth: 0 # we need this, so GoReleaser has access to the whole history for generating changelog
- name: Setup go
uses: actions/setup-go@v2
with:
go-version: 1.19.0
- name: GoReleaser
uses: goreleaser/goreleaser-action@v2
with:
version: latest
args: release --rm-dist
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}