Skip to content

Commit f96097d

Browse files
committed
update build commands in release workflow to include all packages
1 parent f8c27f8 commit f96097d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Diff for: .github/workflows/release.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,11 @@ jobs:
2929
- name: Build project
3030
run: |
3131
if [[ ${{ matrix.os }} == 'ubuntu-latest' ]]; then
32-
GOOS=linux GOARCH=amd64 go build -o myproject-linux
32+
GOOS=linux GOARCH=amd64 go build -o myproject-linux ./...
3333
elif [[ ${{ matrix.os }} == 'windows-latest' ]]; then
34-
GOOS=windows GOARCH=amd64 go build -o myproject-windows.exe
34+
GOOS=windows GOARCH=amd64 go build -o myproject-windows.exe ./...
3535
elif [[ ${{ matrix.os }} == 'macos-latest' ]]; then
36-
GOOS=darwin GOARCH=amd64 go build -o myproject-macos
36+
GOOS=darwin GOARCH=amd64 go build -o myproject-macos ./...
3737
fi
3838
3939
- name: Upload artifact

0 commit comments

Comments
 (0)