Modify the logic to rename.

This commit is contained in:
Kazuhiro MUSASHI 2021-05-06 21:30:32 +09:00
parent bfc5959438
commit cfe3b63a61
1 changed files with 2 additions and 1 deletions

View File

@ -70,7 +70,8 @@ steps:
- unzip /tmp/font.zip -d /tmp/font
- find /tmp/font -type f -name *.ttf | xargs -I% -n 1 cp -p % assets/font/
- find content/ -type f -name '*.md' | grep -v '_index' | xargs -n 1 /usr/local/bin/tcardgen -f assets/font/ -o static/ogp/ -c assets/tcardgen.yaml > /dev/null 2>&1
- find static/ogp/ -type f -name '*.png' | xargs -I% -n 1 img2webp -lossy -q 50 % -o `echo % | sed -e 's/png/webp/g'` > /dev/null 2>&1
- find static/ogp/ -type f -name '*.png' | xargs -I% -n 1 img2webp -lossy -q 50 % -o %.webp > /dev/null 2>&1
- find static/ogp/ -type f -name '*.png.webp' | xargs -I% -n 1 -t mv % static/ogp/`basename % .png.webp`.webp
- find static/ogp/ -type f -name '*.png' | xargs --no-run-if-empty rm
- name: hugo