Add repo release

This commit is contained in:
世界 2024-03-12 22:01:18 +08:00
parent 4b1fabd007
commit b48c471e6a
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
10 changed files with 205 additions and 37 deletions

28
.github/workflows/linux.yml vendored Normal file
View file

@ -0,0 +1,28 @@
name: Release to Linux repository
on:
release:
types:
- published
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
with:
fetch-depth: 0
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: ^1.22
- name: Publish release
uses: goreleaser/goreleaser-action@v5
with:
distribution: goreleaser-pro
version: latest
args: goreleaser release -f .goreleaser.fury.yaml --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GORELEASER_KEY: ${{ secrets.GORELEASER_KEY }}