doc: better wording in readme #26
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release | |
on: | |
push: | |
tags: | |
- "v*" | |
# HINT(lukasmalkmus): Make sure release jobs are only ever run once at a time | |
# (and are never cancelled when new jobs for the same group are queued). | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
jobs: | |
release: | |
name: Release | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-go@v4 | |
with: | |
go-version-file: go.mod | |
- uses: goreleaser/goreleaser-action@v4 | |
with: | |
args: release | |
env: | |
GITHUB_TOKEN: ${{ github.token }} |