fix: simplify zip command path traversal in version bump workflow

main
Marcus Sanatan 2025-10-11 03:25:43 -04:00
parent 32cb8137cc
commit 6b0ee30a86
1 changed files with 3 additions and 3 deletions

View File

@ -115,9 +115,9 @@ jobs:
shell: bash shell: bash
run: | run: |
set -euo pipefail set -euo pipefail
cd MCPForUnity/UnityMcpServer~ cd MCPForUnity
zip -r ../../mcp-for-unity-server-v${NEW_VERSION}.zip . zip -r ../mcp-for-unity-server-v${NEW_VERSION}.zip UnityMcpServer~
cd ../.. cd ..
ls -lh mcp-for-unity-server-v${NEW_VERSION}.zip ls -lh mcp-for-unity-server-v${NEW_VERSION}.zip
echo "Server package created: mcp-for-unity-server-v${NEW_VERSION}.zip" echo "Server package created: mcp-for-unity-server-v${NEW_VERSION}.zip"