Skip to content

Merge pull request #358 from miztch/options-compatibility #70

Merge pull request #358 from miztch/options-compatibility

Merge pull request #358 from miztch/options-compatibility #70

Workflow file for this run

name: Release
on:
push:
branches:
- "!**/*"
tags:
- "v*.*.*"
- "v*.*.*-rc*"
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.21"
check-latest: true
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v5
with:
version: latest
args: release --rm-dist
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}