fix(ci): build multiple cmd packages to directory not file

go build -o flag with ./cmd/... builds multiple binaries. The -o path
must be a directory when building multiple packages, not a file.
This commit is contained in:
Story Crater Bot
2026-08-22 01:04:41 -07:00
parent e7ce8c61b5
commit be455dca7a
+1 -1
View File
@@ -29,7 +29,7 @@ jobs:
run: go test -v ./... run: go test -v ./...
- name: Build - name: Build
run: go build -o /tmp/poimen-workflows ./cmd/... run: go build -o /tmp/poimen-bin/ ./cmd/...
- name: Vet - name: Vet
run: go vet ./... run: go vet ./...