Skip to content

Commit

Permalink
Fixes small error in workflow.
Browse files Browse the repository at this point in the history
  • Loading branch information
DirgoSalga committed Jan 30, 2025
1 parent d44b1cf commit b4f099f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/unzip-and-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
TEMP_DIR="temp_extraction"
GH_PAGES_BRANCH="gh-pages"
mkdir -p $TEMP_DIR
for zipfile in "$UPLOADS_DIR/*.zip"; do
for zipfile in "$UPLOADS_DIR"/*.zip; do
project_name=$(basename "$zipfile" .zip)
unzip "$zipfile" -d "$TEMP_DIR"
if [ -d "$TEMP_DIR/app-files" ]; then
Expand Down

0 comments on commit b4f099f

Please sign in to comment.