Skip to content

Commit 0c5c34d

Browse files
committed
feat: add release workflow
Signed-off-by: Brian McGee <[email protected]>
1 parent 7aa2ad6 commit 0c5c34d

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

.github/workflows/release.yml

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: Release Binaries
2+
on:
3+
workflow_dispatch:
4+
push:
5+
tags:
6+
- "v*"
7+
8+
permissions:
9+
contents: write
10+
packages: write
11+
12+
jobs:
13+
releases-matrix:
14+
name: Release Go Binary
15+
runs-on: ubuntu-latest
16+
strategy:
17+
matrix:
18+
# build and publish in parallel: linux/386, linux/amd64, linux/arm64, windows/386, windows/amd64, darwin/amd64, darwin/arm64
19+
goos: [linux, windows, darwin]
20+
goarch: ["386", amd64, arm64]
21+
exclude:
22+
- goarch: "386"
23+
goos: darwin
24+
25+
steps:
26+
- uses: actions/checkout@v4
27+
- uses: wangyoucao577/go-release-action@v1
28+
with:
29+
github_token: ${{ secrets.GITHUB_TOKEN }}
30+
goos: ${{ matrix.goos }}
31+
goarch: ${{ matrix.goarch }}
32+
goversion: 1.22
33+
extra_files: LICENSE README.md

0 commit comments

Comments
 (0)