Add CI/CD via Drone #1
1 changed files with 14 additions and 12 deletions
16
.drone.yml
16
.drone.yml
|
@ -1,12 +1,14 @@
|
||||||
name: default
|
pipeline:
|
||||||
|
build:
|
||||||
kind: pipeline
|
|
||||||
type: docker
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: build
|
|
||||||
image: ruby
|
image: ruby
|
||||||
commands:
|
commands:
|
||||||
- gem install bundler
|
- gem install bundler
|
||||||
- bundle install
|
- bundle install
|
||||||
- bundle exec jekyll build
|
- bundle exec jekyll build
|
||||||
|
publish:
|
||||||
|
image: plugins/docker
|
||||||
|
settings:
|
||||||
|
registry: docker.atomaka.com
|
||||||
|
repo: atomaka.com
|
||||||
|
tags:
|
||||||
|
- latest
|
||||||
|
|
Loading…
Reference in a new issue