From a5171fd00449f8b73c19d42f2fa93c30894eb9ed Mon Sep 17 00:00:00 2001 From: fukusuket <41001169+fukusuket@users.noreply.github.com> Date: Tue, 22 Oct 2024 21:46:11 -0400 Subject: [PATCH] fix: change artifact path --- .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 4208c16ee..d7ae1f81c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -267,7 +267,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