This repository was archived by the owner on Jan 4, 2025. It is now read-only.
File tree 1 file changed +7
-6
lines changed
1 file changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -18,12 +18,13 @@ jobs:
18
18
19
19
- run : go mod tidy
20
20
- 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
27
28
28
29
- name : Create Release
29
30
id : create_release
You can’t perform that action at this time.
0 commit comments