From 3ac168a6d61a913223d25ffc8c0897b1e801714d Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Wed, 25 Mar 2026 17:02:44 +0200 Subject: 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. --- .github/workflows/ci.yml | 4 ++-- 1 file 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 -- cgit v1.2.3