Create go.yml

This commit is contained in:
Ocarinaoftime 2024-10-11 19:32:06 -04:00 committed by GitHub
parent a9a9e7ac74
commit e6be71dc81
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

20
.github/workflows/go.yml vendored Normal file
View File

@ -0,0 +1,20 @@
#test
on:
release:
types: [created]
jobs:
releases-matrix:
name: Release Go Binary
runs-on: ubuntu-latest
strategy:
matrix:
goos: [linux, windows, darwin]
goarch: [amd64, arm64]
steps:
- uses: actions/checkout@v2
- uses: wangyoucao577/go-release-action@v1.22
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
goos: ${{ matrix.goos }}
goarch: ${{ matrix.goarch }}