Skip to content

docs: add README section on how to release #68

docs: add README section on how to release

docs: add README section on how to release #68

Workflow file for this run

# taken from https://github.com/goreleaser/goreleaser-action#usage
name: goreleaser
on:
pull_request:
push:
tags:
- '*' # release every tag
branches:
- main
jobs:
goreleaser:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
-
name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.19.x
-
name: Run GoReleaser
uses: goreleaser/goreleaser-action@v3
with:
distribution: goreleaser
version: latest
args: release --rm-dist
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# Your GoReleaser Pro key, if you are using the 'goreleaser-pro' distribution
# GORELEASER_KEY: ${{ secrets.GORELEASER_KEY }}