Modify the logic to rename.
This commit is contained in:
parent
1302102189
commit
73d6002589
|
@ -69,9 +69,8 @@ steps:
|
||||||
- unzip /tmp/font.zip -d /tmp/font
|
- unzip /tmp/font.zip -d /tmp/font
|
||||||
- find /tmp/font -type f -name *.ttf | xargs -I% -n 1 cp -p % assets/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
|
- 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
|
||||||
- find static/ogp/ -type f -name '*.png' | xargs -I% -n 1 img2webp -lossy -q 50 % -o %.webp > /dev/null
|
- find static/ogp/ -type f -name '*.png' | xargs -n 1 -I% basename % .png | xargs -I% -n 1 -t img2webp -lossy -q 50 static/ogp/% -o static/ogp/%.webp > /dev/null
|
||||||
- find static/ogp/ -type f -name '*.png' | xargs --no-run-if-empty rm
|
- find static/ogp/ -type f -name '*.png' | xargs --no-run-if-empty rm
|
||||||
- find static/ogp/ -type f -name '*.png.webp' | xargs -n 1 -I% basename % .png.webp | xargs -t -n 1 -I% mv %.png.webp %.png
|
|
||||||
|
|
||||||
- name: hugo
|
- name: hugo
|
||||||
image: cibuilds/hugo:0.83.0
|
image: cibuilds/hugo:0.83.0
|
||||||
|
|
Loading…
Reference in New Issue