Skip to content

Commit

Permalink
Merge pull request #322 from codestoryai/features/move-7z-zip
Browse files Browse the repository at this point in the history
[sidecar] use zip instead of 7z
  • Loading branch information
theskcd authored Dec 3, 2023
2 parents daee9ae + c8ff3b0 commit e7ecc0f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/sidecar-windows.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
2 changes: 1 addition & 1 deletion package_windows_bin.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit e7ecc0f

Please sign in to comment.