File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -23,21 +23,21 @@ jobs:
2323 - name : Package MacOS executable
2424 working-directory : ./cli
2525 run : |
26- GOOS=darwin GOARCH=amd64 go build
26+ GOOS=darwin GOARCH=amd64 CGO_ENABLED=0 go build
2727 tar -czvf hfsubset-macos_amd64.tar.gz hfsubset
2828 rm hfsubset
2929
3030 - name : Package Linux executable
3131 working-directory : ./cli
3232 run : |
33- GOOS=linux GOARCH=amd64 go build
33+ GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build
3434 tar -czvf hfsubset-linux_amd64.tar.gz hfsubset
3535 rm hfsubset
3636
3737 - name : Package Windows executable
3838 working-directory : ./cli
3939 run : |
40- GOOS=windows GOARCH=amd64 go build
40+ GOOS=windows GOARCH=amd64 CGO_ENABLED=0 go build
4141 zip hfsubset-windows_amd64.zip hfsubset.exe
4242 rm hfsubset.exe
4343
You can’t perform that action at this time.
0 commit comments