Skip to content

Prepare release

Prepare release #16

Workflow file for this run

name: release
on:
push:
tags:
- 'v[0-9]+\.[0-9]+\.[0-9]+'
jobs:
goreleaser:
runs-on: ubuntu-latest
permissions:
contents: write
env:
GOLANGCI_LINT_CONFIG: ".golangci.yml"
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- run: make go.mk
- uses: ./go.mk/.github/actions/setup
- uses: ./go.mk/.github/actions/pre-check
- uses: ./go.mk/.github/actions/release
with:
release_github_token: ${{ secrets.GITHUB_TOKEN }}