Skip to content

Commit

Permalink
Make the zip file valid
Browse files Browse the repository at this point in the history
  • Loading branch information
ingeniumed committed Feb 4, 2025
1 parent d2dfdee commit 5e0ee9c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/pr-build-live-branch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 5e0ee9c

Please sign in to comment.