atomaka.com/.drone.yml
Andrew Tomaka 592df09a45
Some checks failed
continuous-integration/drone/pr Build is failing
continuous-integration/drone/push Build is passing
Add jekyll step to build pipeline
2023-02-18 12:14:14 -05:00

34 lines
591 B
YAML

name: test
kind: pipeline
steps:
- name: jekyll-build
image: ruby
commands:
- gem install bundler
- bundle install
- bundle exec jekyll build
trigger:
branch:
exclude: master
event: push
---
name: build
kind: pipeline
steps:
- name: jekyll-build
image: ruby
commands:
- gem install bundler
- bundle install
- bundle exec jekyll build
- name: docker-build
image: plugins/docker
settings:
pull_image: true
registry: docker.atomaka.com
repo: docker.atomaka.com/atomaka.com
trigger:
branch: master