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
run: |
set -euo pipefail
cd MCPForUnity/UnityMcpServer~
zip -r ../../mcp-for-unity-server-v${NEW_VERSION}.zip .
cd ../..
cd MCPForUnity
zip -r ../mcp-for-unity-server-v${NEW_VERSION}.zip UnityMcpServer~
cd ..
ls -lh mcp-for-unity-server-v${NEW_VERSION}.zip
echo "Server package created: mcp-for-unity-server-v${NEW_VERSION}.zip"