Skip to content

Commit

Permalink
Minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
cmahnke committed Nov 16, 2023
1 parent bbb76f9 commit 0ff9ec4
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,10 @@ jobs:
run: hugo --printI18nWarnings --printUnusedTemplates
- name: Cleanup Build
run: |
find docs -type f -size +5M -name '*.jpg' -exec rm {} \;
find docs -type f -size +5M -name '*.jpg' -print -exec rm {} \;
find docs -type f -name '*.jxl' -print -exec rm {} \;
find docs -type f -name 'vips-properties.xml' -print -exec rm {} \;
find docs -type f -path '*/full/full/0/default.jpg' -print -exec rm {} \;
- name: Validate JSON
env:
Expand Down
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,12 @@ content/post/*/img*/
content/post/*/page*/
content/post/*/end-*/
content/post/*/front-*/
content/post/*/back-*/
content/post/*/back/
content/post/*/end/
content/post/*/preview.*
**/.DS_Store
static/fonts/**
assets/css/**
static/pdfjs/**
**/vips-properties.xml

0 comments on commit 0ff9ec4

Please sign in to comment.