From c8ff3b0a2e1680614caaf1b1e32ee962752da4ff Mon Sep 17 00:00:00 2001 From: skcd Date: Sun, 3 Dec 2023 12:02:57 +0530 Subject: [PATCH] [sidecar] use zip instead of 7z --- .github/workflows/sidecar-windows.yaml | 2 +- package_windows_bin.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/sidecar-windows.yaml b/.github/workflows/sidecar-windows.yaml index 680a3e758..7ba3676fd 100644 --- a/.github/workflows/sidecar-windows.yaml +++ b/.github/workflows/sidecar-windows.yaml @@ -77,4 +77,4 @@ jobs: # Set your GCP project gcloud config set project ${{ env.GCP_PROJECT_ID }} # Copy the built binary to the GCP bucket - gsutil cp sidecar.7z "gs://sidecar-bin/windows/sidecar.7z" + gsutil cp sidecar.zip "gs://sidecar-bin/windows/sidecar.zip" diff --git a/package_windows_bin.sh b/package_windows_bin.sh index e1bc75d05..9d96d0c05 100644 --- a/package_windows_bin.sh +++ b/package_windows_bin.sh @@ -3,7 +3,7 @@ cargo build --bin webserver --release pathsToZip="sidecar/onnxruntime/ sidecar/qdrant/ target/release/webserver.exe sidecar/models/" # Destination of the zip file -zipFileDestination="sidecar.7z" +zipFileDestination="sidecar.zip" # Use 7z command to create the archive 7z a -tzip $zipFileDestination $pathsToZip \ No newline at end of file