diff --git a/.github/workflows/pr-build-live-branch.yml b/.github/workflows/pr-build-live-branch.yml index 8bea12f6..776decc9 100644 --- a/.github/workflows/pr-build-live-branch.yml +++ b/.github/workflows/pr-build-live-branch.yml @@ -52,6 +52,7 @@ jobs: id: prepare env: ZIP_NAME: remote-data-blocks-${{ github.event.pull_request.number }}.zip + ZIP_FOLDER_NAME: remote-data-blocks-${{ github.event.pull_request.number }} run: | echo "Generating zip file..." cd "$GITHUB_WORKSPACE" || exit @@ -62,7 +63,8 @@ jobs: mkdir -p "unzips/remote-data-blocks" cd "zips" unzip -qq "$ZIP_NAME" - mv "$ZIP_NAME" "remote-data-blocks" + mv "$ZIP_FOLDER_NAME" "remote-data-blocks" + cd ../ mv "$GITHUB_WORKSPACE/zips/remote-data-blocks" "$GITHUB_WORKSPACE/unzips/remote-data-blocks/remote-data-blocks" - name: Create playground artifact