2023-04-08 11:39:08 +00:00
|
|
|
name: goreleaser
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [ main, ci ]
|
|
|
|
|
|
|
|
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.20.1'
|
|
|
|
- name: goreleaser
|
|
|
|
uses: https://github.com/goreleaser/goreleaser-action@v4
|
|
|
|
with:
|
|
|
|
distribution: goreleaser
|
|
|
|
version: latest
|
2023-04-08 12:02:53 +00:00
|
|
|
args: release --clean
|
2023-04-08 12:23:58 +00:00
|
|
|
|
|
|
|
env_files:
|
|
|
|
GORELEASER_FORCE_TOKEN: "gitea"
|
|
|
|
GITEA_TOKEN: ${{ secrets.GORELASER_TOKEN }}
|
|
|
|
|
|
|
|
# env:
|
|
|
|
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
2023-04-08 11:39:08 +00:00
|
|
|
|