From 6b0ee30a8623ba14364aa45c33c409ce84dba963 Mon Sep 17 00:00:00 2001 From: Marcus Sanatan Date: Sat, 11 Oct 2025 03:25:43 -0400 Subject: [PATCH] fix: simplify zip command path traversal in version bump workflow --- .github/workflows/bump-version.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/bump-version.yml b/.github/workflows/bump-version.yml index 0346f15..e9c3b0a 100644 --- a/.github/workflows/bump-version.yml +++ b/.github/workflows/bump-version.yml @@ -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"