We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b6755c7 commit 87c1cf7Copy full SHA for 87c1cf7
.github/workflows/build-and-deploy.yaml
@@ -28,9 +28,11 @@ jobs:
28
- name: Build
29
run: make all
30
31
- - run: curl -L https://github.com/wilsonzlin/minify-html/releases/download/v0.15.0/minhtml-0.15.0-x86_64-unknown-linux-gnu > minhtml
32
-
33
- - run: ./minhtml --keep-closing-tags --minify-css dist/*.html dist/*.css
+ - name: Minify HTML and CSS
+ run: |
+ curl -L https://github.com/wilsonzlin/minify-html/releases/download/v0.15.0/minhtml-0.15.0-x86_64-unknown-linux-gnu > minhtml
34
+ chmod +x minhtml
35
+ ./minhtml --keep-closing-tags --minify-css dist/*.html dist/*.css
36
37
- name: Setup Pages
38
id: pages
0 commit comments