Skip to content

Commit

Permalink
Update ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
shdwmtr committed Dec 9, 2024
1 parent 63e675f commit efe1c5c
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,12 @@ jobs:
mkdir -p build
cd dist
for folder in */; do
out="${folder%/}"
echo "Zipping folder: $folder"
zip -r "$folder.zip" "$folder" || echo "Failed to zip $folder"
mv "$folder.zip" ../build/$folder.zip || echo "Failed to move $folder.zip to build"
zip -r "$out.zip" "$folder" || echo "Failed to zip $folder"
mv "$out.zip" ../build/$out.zip || echo "Failed to move $folder.zip to build"
done
- name: List built plugins
Expand Down

0 comments on commit efe1c5c

Please sign in to comment.