13 lines
303 B
YAML
13 lines
303 B
YAML
pipeline:
|
|
testing-jekyll:
|
|
image: "jekyll/jekyll:latest"
|
|
pull: "always"
|
|
commands:
|
|
- touch Gemfile.lock
|
|
- chmod a+w Gemfile.lock
|
|
- chown -R jekyll:jekyll /drone
|
|
- gem update --system
|
|
- gem install bundler
|
|
- bundle install
|
|
- bundle exec jekyll build
|