pipeline: jekyll-build: image: jekyll/jekyll:4.2.2 commands: - touch Gemfile.lock - chmod a+w Gemfile.lock - chown -R jekyll:jekyll /drone - gem sources --add https://gems.ruby-china.com/ --remove https://rubygems.org/ - bundle install - bundle exec jekyll build deploy-site: image: drillster/drone-rsync source: _site/* target: ~/docs.hmcl.net recursive: true delete: true when: branch: [master] event: [push]