From 35b6a48f7b02a479a7882f334e7b485602003d0e Mon Sep 17 00:00:00 2001 From: Claude Date: Sat, 10 Jan 2026 10:46:57 +0000 Subject: [PATCH] fix(ci): add xcsift install path to PATH on Linux Use mise where command to find the actual xcsift installation path and add it to GITHUB_PATH. Added debug output to verify installation. --- .github/workflows/ci.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7dcfbde9..f36401e7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -100,6 +100,15 @@ jobs: experimental: true github_token: ${{ secrets.GITHUB_TOKEN }} + - name: Install xcsift via mise + run: | + ./bin/mise install xcsift + # Find and add xcsift binary to PATH + XCSIFT_PATH=$(./bin/mise where xcsift) + echo "$XCSIFT_PATH" >> $GITHUB_PATH + echo "xcsift installed at: $XCSIFT_PATH" + ls -la "$XCSIFT_PATH" + - name: Show Swift version run: swift --version