Add CI/CD via Drone #1

Merged
atomaka merged 29 commits from ci into master 2023-02-18 15:07:14 -05:00
Showing only changes of commit 9070edf6b6 - Show all commits

View file

@ -1,20 +1,20 @@
name: test # name: test
kind: pipeline # kind: pipeline
steps: # steps:
- name: jekyll-build # - name: jekyll-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
#
trigger: # trigger:
branch: # branch:
exclude: master # exclude: master
event: push # event: push
#
--- # ---
name: deploy name: deploy
kind: pipeline kind: pipeline
@ -34,6 +34,21 @@ steps:
# tags: # tags:
# - latest # - latest
# - ${DRONE_TAG} # - ${DRONE_TAG}
# image: plugins/docker
# settings:
# pull_image: true
# registry: docker.atomaka.com
# repo: docker.atomaka.com/atomaka.com
# tags:
# - latest
# - ${DRONE_TAG}
- name: test
image: ruby
environment:
SSH_KEY:
from_secret: docker_username
commands:
- echo $SSH_KEY
- name: deploy - name: deploy
image: plugins/ssh image: plugins/ssh
settings: settings: