Add initial .drone.yml file

This commit is contained in:
Jesper Hess 2019-03-02 22:45:48 +01:00
parent 143d0000c0
commit 737a1a380b
Signed by untrusted user: graffen
GPG Key ID: 351A89E40D763F0F
2 changed files with 22 additions and 1 deletions

20
.drone.yml Normal file
View File

@ -0,0 +1,20 @@
pipeline:
build_website:
image: ruby
commands:
- gem install bundler
- bundle install
- bundle exec jekyll build
docker_build:
image: plugins/docker
repo: docker.data.coop/data-coop-website-test
registry: docker.data.coop
secrets: [DOCKER_USERNAME, DOCKER_PASSWORD]
username:
from_secret: DOCKER_USERNAME
password:
from_secret: DOCKER_PASSWORD
tag:
- "${DRONE_BUILD_NUMBER}"
- "latest"

View File

@ -18,4 +18,5 @@ upon saving files in the source directory.
## Deploying the site
An automated deployment pipeline is underway. For now, just ping graffen :)
An automated deployment pipeline is underway. For now, just ping graffen :)
Getting there!