summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-03-25 17:02:44 +0200
committerPaul Buetow <paul@buetow.org>2026-03-25 17:02:44 +0200
commit3ac168a6d61a913223d25ffc8c0897b1e801714d (patch)
tree852496e7e77d84375b2472a860f542b69bfa10b7
parent4a142f1a75e2ecc804870fbae9e7b940552898c0 (diff)
ci: Fix CI build step to use correct binary path ./cmd/gt
- Changed 'go build -o perc ./cmd/perc' to 'go build -o gt ./cmd/gt' - Changed './perc version' to './gt version' The CI now builds the correct binary with the correct binary name.
-rw-r--r--.github/workflows/ci.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 289a990..3a488d7 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -63,7 +63,7 @@ jobs:
go-version: '1.22'
- name: Build
- run: go build -o perc ./cmd/perc
+ run: go build -o gt ./cmd/gt
- name: Test build
- run: ./perc version
+ run: ./gt version