ci(*): add goreleaser ci

support

windows-amd64/386
linux-amd64/386/arm64/mips64
darwin-amd64/arm64
etc.
This commit is contained in:
dawnnnnnn
2021-11-08 15:00:19 +08:00
parent 10d4b19897
commit c4446ee357
2 changed files with 82 additions and 0 deletions

34
.github/workflows/release.yml vendored Normal file
View File

@@ -0,0 +1,34 @@
name: goreleaser
on:
push:
tags:
- '*'
permissions:
contents: write
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.17
-
name: Run GoReleaser
uses: goreleaser/goreleaser-action@v2
with:
distribution: goreleaser
version: latest
args: --rm-dist -f .github/conf/.goreleaser.yml
workdir: .
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}