From 18ac7a9f9a27c3271c859e1812d26a9130f73f2b Mon Sep 17 00:00:00 2001 From: Greg Gauthier Date: Sun, 1 Mar 2026 14:25:52 +0000 Subject: [PATCH] chore(ci): replace artifact upload with binary verification Remove the upload-artifact step in the CI workflow and add verification steps to run the binary with --help and list its details. --- .gitea/workflows/ci.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 58683b9..60151d2 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -74,8 +74,7 @@ jobs: - name: Build run: make build - - name: Upload artifacts - uses: actions/upload-artifact@v4 - with: - name: grokkit-linux-amd64 - path: build/grokkit + - name: Verify binary + run: | + ./build/grokkit --help + ls -lh build/grokkit