We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8f62c2e commit 16fe30fCopy full SHA for 16fe30f
.github/workflows/release.yml
@@ -19,9 +19,9 @@ jobs:
19
- name: Build for multiple platforms
20
run: |
21
mkdir -p builds
22
- GOOS=linux GOARCH=amd64 go build -o builds/tcp_client_linux_amd64 ./tcp_client
23
- GOOS=windows GOARCH=amd64 go build -o builds/tcp_client_windows_amd64.exe ./tcp_client
24
- GOOS=darwin GOARCH=amd64 go build -o builds/tcp_client_darwin_amd64 ./tcp_client
+ GOOS=linux GOARCH=amd64 go build -o builds/tcp_client_linux_amd64 .
+ GOOS=windows GOARCH=amd64 go build -o builds/tcp_client_windows_amd64.exe .
+ GOOS=darwin GOARCH=amd64 go build -o builds/tcp_client_darwin_amd64 .
25
26
- name: Create Release
27
uses: softprops/action-gh-release@v1
0 commit comments