From 0b852c5087ecedbca6bb8f0c51112e788293158e Mon Sep 17 00:00:00 2001 From: Justin Harms Date: Fri, 2 Jan 2026 17:40:34 -0600 Subject: [PATCH] Update Gitea workflow to specify output binary location for jiggablend build - 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. --- .gitea/workflows/test-pr.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/test-pr.yaml b/.gitea/workflows/test-pr.yaml index 33a868a..2602c67 100644 --- a/.gitea/workflows/test-pr.yaml +++ b/.gitea/workflows/test-pr.yaml @@ -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 ./... \ No newline at end of file