2023-02-19 04:42:15 +00:00
|
|
|
name: goreleaser
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [ master ] # your default branch if different
|
|
|
|
paths: [ CHANGELOG.md ] # your changelog file if different
|
|
|
|
|
|
|
|
permissions:
|
|
|
|
contents: write
|
|
|
|
packages: write
|
|
|
|
# issues: write
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
goreleaser:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
- run: git fetch --force --tags
|
|
|
|
- uses: actions/setup-go@v3
|
|
|
|
with:
|
|
|
|
go-version: '==1.19.5'
|
|
|
|
cache: true
|
|
|
|
# More assembly might be required: Docker logins, GPG, etc. It all depends
|
|
|
|
# on your needs.
|
|
|
|
- uses: goreleaser/goreleaser-action@v4
|
|
|
|
with:
|
|
|
|
# either 'goreleaser' (default) or 'goreleaser-pro':
|
|
|
|
distribution: goreleaser
|
|
|
|
version: latest
|
2023-02-19 04:48:15 +00:00
|
|
|
args: release --release-notes=".changes/$(go run backy.go version).md" -f .goreleaser/github.yml --clean
|
2023-02-19 04:42:15 +00:00
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GORELEASER_TOKEN }}
|
|
|
|
# Your GoReleaser Pro key, if you are using the 'goreleaser-pro'
|
|
|
|
# distribution:
|
|
|
|
# GORELEASER_KEY: ${{ secrets.GORELEASER_KEY }}
|