Skip to content

Commit

Permalink
Fix directory references
Browse files Browse the repository at this point in the history
  • Loading branch information
kberzinch committed Jun 19, 2024
1 parent 7785ca8 commit df5e70a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-artifact.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ jobs:
run: |
set -eux
npm install -g npm@latest
npx html-minifier --input-dir /docs/ --output-dir /docs/ --file-ext html --collapse-whitespace --collapse-inline-tag-whitespace --minify-css --minify-js --minify-urls ROOT_PATH_RELATIVE --remove-comments --remove-empty-attributes --conservative-collapse
find /docs/ -type f -size +0 | while read file; do
npx html-minifier --input-dir _build/dirhtml/ --output-dir _build/dirhtml/ --file-ext html --collapse-whitespace --collapse-inline-tag-whitespace --minify-css --minify-js --minify-urls ROOT_PATH_RELATIVE --remove-comments --remove-empty-attributes --conservative-collapse
find _build/dirhtml/ -type f -size +0 | while read file; do
filename=$(basename -- "$file");
extension="${filename##*.}";
if [ "$extension" = "js" ]; then
Expand Down

0 comments on commit df5e70a

Please sign in to comment.