105 lines
2.9 KiB
YAML
105 lines
2.9 KiB
YAML
kind: pipeline
|
|
type: docker
|
|
name: production
|
|
|
|
steps:
|
|
- name: Modify-Amazon-Links
|
|
image: alpine:3.9
|
|
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.64.1
|
|
commands:
|
|
- sudo hugo -e production -v -s .
|
|
|
|
- name: Compress-the-Assets
|
|
image: alpine:3.9
|
|
commands:
|
|
- for TARGET in `find public/ -type f | egrep "\.(css|js|png|jpg|JPG|PNG|CSS|JS)$"`; do gzip -c ${TARGET} > ${TARGET}.gz; done
|
|
- for TARGET in `find public/ -type f | egrep "\.(css|js|png|jpg|JPG|PNG|CSS|JS)$"`; do rm -f ${TARGET}; done
|
|
|
|
- name: housekeep
|
|
image: appleboy/drone-ssh
|
|
settings:
|
|
host: 10.0.1.166
|
|
username: webadm
|
|
port: 10022
|
|
key:
|
|
from_secret: ssh_key
|
|
script:
|
|
- rm -rf /var/www/blog/*
|
|
- rm -rf /home/webadm/works/public/*
|
|
|
|
- name: scp
|
|
image: appleboy/drone-scp
|
|
settings:
|
|
host: 10.0.1.166
|
|
username: webadm
|
|
port: 10022
|
|
target:
|
|
- /var/www/blog
|
|
- /home/webadm/works/public
|
|
source: public/
|
|
key:
|
|
from_secret: ssh_key
|
|
overwrite: true
|
|
strip_components: 1
|
|
|
|
trigger:
|
|
branch:
|
|
- master
|
|
|
|
---
|
|
kind: pipeline
|
|
type: docker
|
|
name: staging
|
|
|
|
steps:
|
|
- name: Modify-Amazon-Links
|
|
image: alpine:3.9
|
|
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.64.1
|
|
commands:
|
|
- sudo hugo -e staging -v -s .
|
|
|
|
- name: Compress-the-Assets
|
|
image: alpine:3.9
|
|
commands:
|
|
- for TARGET in `find public/ -type f | egrep "\.(css|js|png|jpg|JPG|PNG|CSS|JS)$"`; do gzip -c ${TARGET} > ${TARGET}.gz; done
|
|
- for TARGET in `find public/ -type f | egrep "\.(css|js|png|jpg|JPG|PNG|CSS|JS)$"`; do rm -f ${TARGET}; done
|
|
|
|
- name: housekeep
|
|
image: appleboy/drone-ssh
|
|
settings:
|
|
host: 10.0.1.166
|
|
username: webadm
|
|
port: 10022
|
|
key:
|
|
from_secret: ssh_key
|
|
script:
|
|
- rm -rf /var/www/test/*
|
|
|
|
- name: scp
|
|
image: appleboy/drone-scp
|
|
settings:
|
|
host: 10.0.1.166
|
|
username: webadm
|
|
port: 10022
|
|
target: /var/www/test
|
|
source: public/
|
|
key:
|
|
from_secret: ssh_key
|
|
overwrite: true
|
|
strip_components: 1
|
|
|
|
trigger:
|
|
branch:
|
|
exclude:
|
|
- master
|