Skip to content

Commit 2411989

Browse files
committed
fix: handle shinkai-tools-runner-resources directory name in binary build
1 parent 35d617a commit 2411989

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/build-binaries.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,9 @@ jobs:
6767
run: |
6868
mkdir files-to-r2
6969
cp target/release/zoo-node${{ env.EXTENSION }} files-to-r2/zoo-node${{ env.EXTENSION }}
70-
cp -r target/release/zoo-tools-runner-resources files-to-r2/
70+
if [ -d "target/release/shinkai-tools-runner-resources" ]; then
71+
cp -r target/release/shinkai-tools-runner-resources files-to-r2/
72+
fi
7173
cd ./files-to-r2
7274
7z a -tzip ${{ env.ZIP_FILE_NAME}} . -sdel
7375
cp ${{ env.ZIP_FILE_NAME}} latest.zip

0 commit comments

Comments
 (0)