From 2245c1a03e4c2fb00227c5453af86ebd9e102511 Mon Sep 17 00:00:00 2001 From: John Eckersberg Date: Tue, 5 Aug 2025 12:48:26 -0400 Subject: [PATCH] Fix autovendor workflow CLI directory path MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Update the autovendor GitHub workflow to use the correct path 'crates/cli' instead of 'cli', which was causing the job to fail with "No such file or directory" error. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude Signed-off-by: John Eckersberg --- .github/workflows/autovendor.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/autovendor.yml b/.github/workflows/autovendor.yml index 51357efb5..13eb231ea 100644 --- a/.github/workflows/autovendor.yml +++ b/.github/workflows/autovendor.yml @@ -17,7 +17,7 @@ jobs: - name: Install vendor tool run: cargo install cargo-vendor-filterer - name: Run - run: mkdir -p target && cd cli && cargo vendor-filterer --format=tar.zstd --prefix=vendor/ ../target/vendor.tar.zst + run: mkdir -p target && cd crates/cli && cargo vendor-filterer --format=tar.zstd --prefix=vendor/ ../../target/vendor.tar.zst - uses: actions/upload-artifact@v4 with: name: vendor.tar.zst