sharpetronics.com/.drone.yml

27 lines
355 B
YAML
Raw Normal View History

2022-05-08 16:00:37 -04:00
---
kind: pipeline
type: docker
2022-05-08 16:05:41 -04:00
name: default
2022-05-08 16:00:37 -04:00
2022-05-08 16:26:06 -04:00
workspace:
path: /drone/src
platform:
2022-05-08 16:37:33 -04:00
os: linux
2022-05-08 16:26:06 -04:00
arch: amd64
2022-05-08 17:34:25 -04:00
trigger:
branch:
- master
2022-05-08 16:12:12 -04:00
steps:
2022-05-08 16:37:33 -04:00
- name: jekyll-build
2022-05-08 17:34:25 -04:00
image: jekyll/jekyll:4.2.2
2022-05-08 16:26:06 -04:00
volumes:
- name: jekyll
path: /srv/jekyll
2022-05-08 16:12:12 -04:00
commands:
- gem install bundler
- bundle install
2022-05-08 17:44:47 -04:00
- bundle exec jekyll build --trace