Skip to content
This repository was archived by the owner on Jan 4, 2025. It is now read-only.

Commit ea7a597

Browse files
Fix GA
1 parent b3d0e6d commit ea7a597

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

.github/workflows/release.yaml

+7-6
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,13 @@ jobs:
1818

1919
- run: go mod tidy
2020
- run: go mod verify
21-
- run: GOOS=windows GOARCH=amd64 go build -a -tags netgo -installsuffix netgo --ldflags '-extldflags "-static"' -o windows-gowl.exe
22-
- run: GOOS=darwin GOARCH=amd64 go build -a -tags netgo -installsuffix netgo --ldflags '-extldflags "-static"' -o mac-gowl
23-
- run: GOOS=linux GOARCH=amd64 go build -a -tags netgo -installsuffix netgo --ldflags '-extldflags "-static"' -o linux-gowl
24-
- run: tar zfc dist/gowl-${{ github.ref_name }}-x86_64-windows.tar.gz windows-gowl.exe
25-
- run: tar zfc dist/gowl-${{ github.ref_name }}-x86_64-darwin.tar.gz mac-gowl
26-
- run: tar zfc dist/gowl-${{ github.ref_name }}-x86_64-linux.tar.gz linux-gowl
21+
- run: mkdir -p dist/windows dist/mac dist/linux
22+
- run: GOOS=windows GOARCH=amd64 go build -a -tags netgo -installsuffix netgo --ldflags '-extldflags "-static"' -o dist/windows/gowl.exe
23+
- run: GOOS=darwin GOARCH=amd64 go build -a -tags netgo -installsuffix netgo --ldflags '-extldflags "-static"' -o dist/mac/gowl
24+
- run: GOOS=linux GOARCH=amd64 go build -a -tags netgo -installsuffix netgo --ldflags '-extldflags "-static"' -o dist/linux/gowl
25+
- run: tar zfc dist/gowl-${{ github.ref_name }}-x86_64-windows.tar.gz dist/windows/gowl.exe
26+
- run: tar zfc dist/gowl-${{ github.ref_name }}-x86_64-darwin.tar.gz dist/mac/gowl
27+
- run: tar zfc dist/gowl-${{ github.ref_name }}-x86_64-linux.tar.gz dist/linux/gowl
2728

2829
- name: Create Release
2930
id: create_release

0 commit comments

Comments
 (0)