-
-
Notifications
You must be signed in to change notification settings - Fork 0
29 lines (26 loc) · 703 Bytes
/
release.yaml
File metadata and controls
29 lines (26 loc) · 703 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
name: release
on:
release:
types: [created]
jobs:
release:
name: Release Go binary
runs-on: ubuntu-latest
strategy:
matrix:
goos: [windows]
goarch: ["386", amd64]
steps:
- uses: actions/checkout@v6
- uses: wangyoucao577/go-release-action@v1.55
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
goos: ${{ matrix.goos }}
goarch: ${{ matrix.goarch }}
goversion: 1.22.3
project_path: cmd/bf2-conman
binary_name: bf2-conman
pre_command: pushd cmd/bf2-conman && go generate && popd
ldflags: -s -w -H windowsgui
md5sum: false
sha256sum: false