42 lines
656 B
YAML
42 lines
656 B
YAML
---
|
|
kind: pipeline
|
|
type: docker
|
|
name: deploy-jekyll-sergio.am
|
|
|
|
steps:
|
|
- name: build
|
|
image: ruby:latest
|
|
volumes:
|
|
- name: bundle-cache
|
|
path: /cache
|
|
commands:
|
|
- bundle config set --local path /cache/.bundle
|
|
- bundle env
|
|
- bundle install
|
|
- ls -la /cache/.bundle
|
|
- bundle exec jekyll build
|
|
|
|
- name: deploy
|
|
image: busybox
|
|
volumes:
|
|
- name: www
|
|
path: /tmp/www
|
|
commands:
|
|
- rm -rf /tmp/www/_site
|
|
- cp -r _site /tmp/www/_site
|
|
|
|
when:
|
|
branch:
|
|
- main
|
|
|
|
node:
|
|
location: marley
|
|
|
|
volumes:
|
|
- name: bundle-cache
|
|
host:
|
|
path: /var/lib/drone/temp/ruby-bundle-cache-sergio.am
|
|
- name: www
|
|
host:
|
|
path: /var/www
|