fix(ci): build multiple cmd packages to directory not file
ci / test (push) Successful in 44s

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 38c2af9f39
commit b2f0c129a2
+1 -1
View File
@@ -29,7 +29,7 @@ jobs:
run: go test -v ./...
- name: Build
run: go build -o /tmp/poimen-workflows ./cmd/...
run: go build -o /tmp/poimen-bin/ ./cmd/...
- name: Vet
run: go vet ./...