|
|
|
@ -6,11 +6,33 @@ clone:
|
|
|
|
|
depth: 1
|
|
|
|
|
|
|
|
|
|
steps:
|
|
|
|
|
- name: hugo
|
|
|
|
|
- name: hugo_prod
|
|
|
|
|
image: code.ndumas.com/ndumas/hugo:latest
|
|
|
|
|
commands:
|
|
|
|
|
- hugo --enableGitInfo -d /drone/src/public/ --baseURL https://blog.ndumas.com
|
|
|
|
|
when:
|
|
|
|
|
branch:
|
|
|
|
|
include:
|
|
|
|
|
- main
|
|
|
|
|
- name: hugo_dev
|
|
|
|
|
image: code.ndumas.com/ndumas/hugo
|
|
|
|
|
commands:
|
|
|
|
|
- ./build.sh $DRONE_BRANCH
|
|
|
|
|
- hugo --enableGitInfo -d /drone/src/public/ --baseURL https://dev.blog.ndumas.com
|
|
|
|
|
when:
|
|
|
|
|
branch:
|
|
|
|
|
include:
|
|
|
|
|
- dev
|
|
|
|
|
- name: hugo_drafts
|
|
|
|
|
image: code.ndumas.com/ndumas/hugo
|
|
|
|
|
commands:
|
|
|
|
|
- hugo --enableGitInfo -DF -d /drone/src/public/ --baseURL https://drafts.blog.ndumas.com
|
|
|
|
|
when:
|
|
|
|
|
branch:
|
|
|
|
|
include:
|
|
|
|
|
- drafts
|
|
|
|
|
- name: publish_prod
|
|
|
|
|
depends_on:
|
|
|
|
|
- hugo_prod
|
|
|
|
|
image: drillster/drone-rsync
|
|
|
|
|
settings:
|
|
|
|
|
key:
|
|
|
|
@ -27,6 +49,8 @@ steps:
|
|
|
|
|
include:
|
|
|
|
|
- main
|
|
|
|
|
- name: publish_dev
|
|
|
|
|
depends_on:
|
|
|
|
|
- hugo_dev
|
|
|
|
|
image: drillster/drone-rsync
|
|
|
|
|
settings:
|
|
|
|
|
key:
|
|
|
|
@ -43,6 +67,8 @@ steps:
|
|
|
|
|
include:
|
|
|
|
|
- dev
|
|
|
|
|
- name: publish_drafts
|
|
|
|
|
depends_on:
|
|
|
|
|
- hugo_drafts
|
|
|
|
|
image: drillster/drone-rsync
|
|
|
|
|
settings:
|
|
|
|
|
key:
|
|
|
|
|