Skip to content

Fix goreleaser to use the --clean flag rather than --rm-dist (#868) #31

Fix goreleaser to use the --clean flag rather than --rm-dist (#868)

Fix goreleaser to use the --clean flag rather than --rm-dist (#868) #31

Workflow file for this run

name: goreleaser
on:
push:
tags:
- v*
jobs:
goreleaser:
name: Publish Release
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: ^1.18
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v2
with:
version: latest
args: release --clean
workdir: v3
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}