Merge pull request #7063 from oobabooga/dev

Merge dev branch
This commit is contained in:
oobabooga 2025-06-10 23:35:22 -03:00 committed by GitHub
commit 036976aeb8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 15 additions and 3 deletions

View file

@ -176,7 +176,11 @@ jobs:
fi
# Rename back after creating the zip (the next step assumes this folder exists)
mv text-generation-webui-${VERSION_CLEAN} text-generation-webui
if [[ "$RUNNER_OS" == "Windows" ]]; then
powershell -Command "Move-Item -Path text-generation-webui-${VERSION_CLEAN} -Destination text-generation-webui -Force"
else
mv text-generation-webui-${VERSION_CLEAN} text-generation-webui
fi
- name: Upload files to a GitHub release
id: upload-release

View file

@ -162,7 +162,11 @@ jobs:
fi
# Rename back after creating the zip (the next step assumes this folder exists)
mv text-generation-webui-${VERSION_CLEAN} text-generation-webui
if [[ "$RUNNER_OS" == "Windows" ]]; then
powershell -Command "Move-Item -Path text-generation-webui-${VERSION_CLEAN} -Destination text-generation-webui -Force"
else
mv text-generation-webui-${VERSION_CLEAN} text-generation-webui
fi
- name: Upload files to a GitHub release
id: upload-release

View file

@ -186,7 +186,11 @@ jobs:
fi
# Rename back after creating the zip (the next step assumes this folder exists)
mv text-generation-webui-${VERSION_CLEAN} text-generation-webui
if [[ "$RUNNER_OS" == "Windows" ]]; then
powershell -Command "Move-Item -Path text-generation-webui-${VERSION_CLEAN} -Destination text-generation-webui -Force"
else
mv text-generation-webui-${VERSION_CLEAN} text-generation-webui
fi
- name: Upload files to a GitHub release
id: upload-release