From d72e8ca858b33c965ba308c939fb46381cbe1c74 Mon Sep 17 00:00:00 2001 From: MajorDroolz Date: Mon, 19 Dec 2022 14:55:28 -0500 Subject: [PATCH] FIX: Silly yaml syntax error. --- .github/workflows/minify.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/minify.yml b/.github/workflows/minify.yml index c99ce08..17c01b7 100644 --- a/.github/workflows/minify.yml +++ b/.github/workflows/minify.yml @@ -17,13 +17,13 @@ jobs: with: node-version: '16' - run: | - npm install -g terser csso-cli html-minifier + npm install -g terser csso-cli html-minifier # Use CLI tools to minify, overwriting existing files - run: | - for i in `find . -name "*.js" -type f`; terser $i --compress -o $i; done - 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 $i -o $i; done + for i in `find . -name "*.js" -type f`; terser $i --compress -o $i; done + 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 $i -o $i; done # Push changes to `build` branch - run: |