blog/.drone.yml

32 lines
959 B
YAML

kind: pipeline
type: docker
name: default
steps:
- name: Modify-Amazon-Links
image: cibuilds/hugo:0.62.1
commands:
- grep -l -r ecx.images-amazon.com content/ | sort | uniq | xargs -t --no-run-if-empty sed -ie "s/http:\/\/ecx.images-amazon.com/https:\/\/images-na.ssl-images-amazon.com/g"
- grep -l -r "http://www.amazon.co.jp/exec" content/ | sort | uniq | xargs -t --no-run-if-empty sed -i -e "s/http:\/ / www.amazon.co.jp\/exec/https:\/ / www.amazon.co.jp\/exec/g"
- name: hugo
image: cibuilds/hugo:0.62.1
commands:
- if [ "${DRONE_BRANCH}" != "master" ]; then \
hugo -e staging -v -s \
else \
hugo -e production -v -s \
fi
- name: Compress-the-Assets
image: cibuilds/hugo:0.62.1
commands: >
for TARGET in `find public/ -type f | egrep "\.(css|js|png|jpg|JPG|PNG|CSS|JS)$"` \
do \
gzip -c ${TARGET} > ${TARGET}.gz \
done
trigger:
event:
- push