We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f8c27f8 commit f96097dCopy full SHA for f96097d
.github/workflows/release.yml
@@ -29,11 +29,11 @@ jobs:
29
- name: Build project
30
run: |
31
if [[ ${{ matrix.os }} == 'ubuntu-latest' ]]; then
32
- GOOS=linux GOARCH=amd64 go build -o myproject-linux
+ GOOS=linux GOARCH=amd64 go build -o myproject-linux ./...
33
elif [[ ${{ matrix.os }} == 'windows-latest' ]]; then
34
- GOOS=windows GOARCH=amd64 go build -o myproject-windows.exe
+ GOOS=windows GOARCH=amd64 go build -o myproject-windows.exe ./...
35
elif [[ ${{ matrix.os }} == 'macos-latest' ]]; then
36
- GOOS=darwin GOARCH=amd64 go build -o myproject-macos
+ GOOS=darwin GOARCH=amd64 go build -o myproject-macos ./...
37
fi
38
39
- name: Upload artifact
0 commit comments