
Also, use arg `--clean` instead of `--rm-dist` as it has been deprecated. See: - https://github.com/goreleaser/goreleaser-action#run-on-new-tag - https://goreleaser.com/deprecations/#-rm-dist
34 lines
642 B
YAML
34 lines
642 B
YAML
name: goreleaser
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- 'v*'
|
|
workflow_dispatch:
|
|
|
|
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.20'
|
|
|
|
- name: Make All
|
|
run: |
|
|
./package.sh
|
|
|
|
- name: Run GoReleaser
|
|
uses: goreleaser/goreleaser-action@v3
|
|
with:
|
|
version: latest
|
|
args: release --clean --release-notes=./Release.md
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GPR_TOKEN }}
|