Update Gitea workflow to specify output binary location for jiggablend build
Some checks failed
PR Check / check-and-test (pull_request) Failing after 8s

- Changed the build command in the test-pr.yaml workflow to output the jiggablend binary to the bin directory.
- This modification enhances the organization of build artifacts and aligns with project structure.
This commit is contained in:
2026-01-02 17:40:34 -06:00
parent 5e56c7f0e8
commit 0b852c5087

View File

@@ -11,5 +11,5 @@ jobs:
with:
go-version-file: 'go.mod'
- run: go mod tidy
- run: go build ./...
- run: go build -o bin/jiggablend ./cmd/jiggablend
- run: go test -race -v -shuffle=on ./...