FIX: Merge minify.

This commit is contained in:
MajorDroolz
2022-12-20 03:20:38 -05:00
parent fa9cdbf1b0
commit c774126cc0

View File

@@ -27,6 +27,9 @@ jobs:
for i in `find . -name "*.css" -type f`; do csso $i -o $i; done
for i in `find . -name "*.html" -type f`; do html-minifier --remove-comments --collapse-whitespace $i -o $i; done
- run: git commit -am "STUFF"
- run: |
git config --global user.email "you@example.com"
git config --global user.name "Your Name"
git commit -am "STUFF"
- run: git push -f
- run: gh pr create --title "Pull request title" --body "Pull request body" --base "build"