Update the zip filename

This commit is contained in:
oobabooga 2025-04-22 07:58:19 -07:00
parent 008c6dd682
commit a3031795a3
2 changed files with 4 additions and 2 deletions

View file

@ -160,7 +160,8 @@ jobs:
# 6. Create ZIP file
cd ..
ZIP_NAME="textgen-portable-${VERSION}-${PLATFORM}-cuda${CUDA_VERSION}.zip"
VERSION_CLEAN="${VERSION#v}"
ZIP_NAME="textgen-portable-${VERSION_CLEAN}-${PLATFORM}-cuda${CUDA_VERSION}.zip"
echo "Creating archive: $ZIP_NAME"
if [[ "$RUNNER_OS" == "Windows" ]]; then

View file

@ -170,7 +170,8 @@ jobs:
# 5. Create ZIP file
cd ..
ZIP_NAME="textgen-portable-${VERSION}-${PLATFORM}.zip"
VERSION_CLEAN="${VERSION#v}"
ZIP_NAME="textgen-portable-${VERSION_CLEAN}-${PLATFORM}.zip"
echo "Creating archive: $ZIP_NAME"
if [[ "$RUNNER_OS" == "Windows" ]]; then