You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

115 lines
2.3 KiB
YAML

kind: pipeline
name: blog
type: docker
clone:
depth: 1
steps:
- name: restore_cache
image: drillster/drone-volume-cache
volumes:
- name: go_module_cache
path: /var/cache/go/mod/
settings:
restore: true
mount:
- /tmp/hugo_cache/
5 months ago
- name: hugo_prod
depends_on:
- restore_cache
5 months ago
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
depends_on:
- restore_cache
image: code.ndumas.com/ndumas/hugo
commands:
5 months ago
- hugo --enableGitInfo -d /drone/src/public/ --baseURL https://dev.blog.ndumas.com
when:
branch:
include:
- dev
- name: hugo_drafts
depends_on:
- restore_cache
5 months ago
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
5 months ago
depends_on:
- hugo_prod
image: drillster/drone-rsync
settings:
key:
from_secret: BLOG_DEPLOY_KEY
user: blog
delete: true
recursive: true
hosts: ["blog.ndumas.com"]
source: /drone/src/public/
5 months ago
target: /var/www/blog.ndumas.com/
include: ["*"]
when:
branch:
include:
- main
- name: publish_dev
5 months ago
depends_on:
- hugo_dev
image: drillster/drone-rsync
settings:
key:
from_secret: BLOG_DEPLOY_KEY
user: blog
delete: true
recursive: true
hosts: ["blog.ndumas.com"]
source: /drone/src/public/
target: /var/www/dev.blog.ndumas.com/
include: ["*"]
when:
branch:
include:
- dev
- name: publish_drafts
5 months ago
depends_on:
- hugo_drafts
image: drillster/drone-rsync
settings:
key:
from_secret: BLOG_DEPLOY_KEY
user: blog
delete: true
recursive: true
hosts: ["blog.ndumas.com"]
source: /drone/src/public/
target: /var/www/drafts.blog.ndumas.com/
include: ["*"]
when:
branch:
include:
- drafts
- name: rebuild_cache
depends_on:
5 months ago
- publish_prod
- publish_dev
- publish_drafts
image: drillster/drone-volume-cache
volumes:
- name: go_module_cache
path: /var/cache/go/mod/
settings:
rebuild: true
mount:
- /tmp/hugo_cache/