From 8a3cf9041eb2f23ec27c8f370ab5e86d12f9a93e Mon Sep 17 00:00:00 2001 From: fukusuket <41001169+fukusuket@users.noreply.github.com> Date: Sat, 9 Nov 2024 09:03:50 +0900 Subject: [PATCH] fix: win release zip folder --- .github/workflows/release.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2a0c739..4c551cc 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -153,7 +153,9 @@ jobs: ls -lR all-packages cd all-packages for dir in */; do - zip -r "${dir%/}.zip" "$dir" + cd "$dir" + zip -r "../${dir%/}.zip" * + cd .. done - name: Upload Zip Artifacts(all-packages) uses: actions/upload-artifact@v4