Add jekyll step to build pipeline
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Andrew Tomaka 2023-02-18 12:13:32 -05:00
parent 446c69c4c6
commit cab47c4f1d
Signed by: atomaka
GPG Key ID: 61209BF70A5B18BE
1 changed files with 9 additions and 2 deletions

View File

@ -2,7 +2,7 @@ name: test
kind: pipeline
steps:
- name: build
- name: jekyll-build
image: ruby
commands:
- gem install bundler
@ -18,7 +18,13 @@ name: build
kind: pipeline
steps:
- name: publish
- 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
@ -26,3 +32,4 @@ steps:
repo: docker.atomaka.com/atomaka.com
trigger:
branch: master
event: push