Skip to content

Commit 2245c1a

Browse files
jeckersbclaude
andcommitted
Fix autovendor workflow CLI directory path
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 <[email protected]> Signed-off-by: John Eckersberg <[email protected]>
1 parent 06a643c commit 2245c1a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/autovendor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Install vendor tool
1818
run: cargo install cargo-vendor-filterer
1919
- name: Run
20-
run: mkdir -p target && cd cli && cargo vendor-filterer --format=tar.zstd --prefix=vendor/ ../target/vendor.tar.zst
20+
run: mkdir -p target && cd crates/cli && cargo vendor-filterer --format=tar.zstd --prefix=vendor/ ../../target/vendor.tar.zst
2121
- uses: actions/upload-artifact@v4
2222
with:
2323
name: vendor.tar.zst

0 commit comments

Comments
 (0)