diff --git a/.drone.yml b/.drone.yml index 06a453e..2b2b32a 100644 --- a/.drone.yml +++ b/.drone.yml @@ -1,8 +1,11 @@ +--- +kind: pipeline +type: docker +name: default -pipeline: - build: - image: ruby:alpine - commands: - - bundle install - - bundle exec jekyll build - branches: main +steps: +- name: backend + image: ruby:latest + commands: + - bundle install + - bundle exec jekyll build