From 591c257151d35515fe659d13efb7df1de1341390 Mon Sep 17 00:00:00 2001 From: Mathieu Broillet Date: Wed, 28 Aug 2024 16:30:46 +0200 Subject: [PATCH] fix artifacts upload ? --- .github/workflows/build-and_publish-prebuilts-whl.yml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build-and_publish-prebuilts-whl.yml b/.github/workflows/build-and_publish-prebuilts-whl.yml index 47b86c7..5333513 100644 --- a/.github/workflows/build-and_publish-prebuilts-whl.yml +++ b/.github/workflows/build-and_publish-prebuilts-whl.yml @@ -50,16 +50,14 @@ jobs: # Step 5: Copy bitsandbytes wheel artifact to host - name: Copy bitsandbytes wheel to host run: | - mkdir -p /tmp/bitsandbytes/dist - docker cp prebuilt-container:/tmp/bitsandbytes/dist/ /tmp/bitsandbytes/dist/ - ls -l /tmp/bitsandbytes/dist/ + mkdir -p /tmp/bitsandbytes/ + docker cp prebuilt-container:/tmp/bitsandbytes/dist/ /tmp/bitsandbytes/ # Step 6: Copy llama-cpp-python wheel artifact to host - name: Copy llama-cpp-python wheel to host run: | - mkdir -p /tmp/llama-cpp-python/dist - docker cp prebuilt-container:/tmp/llama-cpp-python/dist/ /tmp/llama-cpp-python/dist/ - ls -l /tmp/llama-cpp-python/dist/ + mkdir -p /tmp/llama-cpp-python/ + docker cp prebuilt-container:/tmp/llama-cpp-python/dist/ /tmp/llama-cpp-python/ # Step 7: Upload bitsandbytes wheel artifact - name: Upload bitsandbytes wheel