mirror of
https://gitee.com/IrisVega/frp.git
synced 2024-11-01 22:31:29 +08:00
35 lines
725 B
YAML
35 lines
725 B
YAML
name: goreleaser
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
goreleaser:
|
|
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
|
|
|
|
- run: |
|
|
# https://github.com/actions/setup-go/issues/107
|
|
cp -f `which go` /usr/bin/go
|
|
|
|
- name: Make All
|
|
run: |
|
|
./package.sh
|
|
|
|
- name: Run GoReleaser
|
|
uses: goreleaser/goreleaser-action@v2
|
|
with:
|
|
version: latest
|
|
args: release --rm-dist --release-notes=./Release.md
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GPR_TOKEN }}
|