We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 14f31a3 commit e4b9270Copy full SHA for e4b9270
1 file changed
.github/workflows/deploy.yml
@@ -52,10 +52,11 @@ jobs:
52
# Step 7: Copy non-minifiable files (images, videos) directly
53
- name: Copy Non-Minifiable Files
54
run: |
55
- for file in $(find . -type f ! -name "*.html" ! -name "*.css" ! -name "*.js" ! -path "./node_modules/*" ! -path "./.vscode/*" ! -path "./.idea/*" ! -path "./bootstrap/*"); do
56
- mkdir -p "$(dirname $file)"
57
- cp "$file" "$(dirname $file)/"
58
- done
+ for file in $(find . -type f ! -name "*.html" ! -name "*.css" ! -name "*.js" ! -path "./node_modules/*" ! -path "./.vscode/*" ! -path "./.idea/*" ! -path "./bootstrap/*"); do
+ dest_dir="$(dirname "./minified/$file")"
+ mkdir -p "$dest_dir"
+ cp "$file" "$dest_dir/"
59
+ done
60
61
# Step 8: Deploy to GitHub Pages
62
- name: Deploy to GitHub Pages
0 commit comments