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: deploy 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 tags: - latest - ${DRONE_TAG} trigger: event: tag