Add initial .drone.yml file
This commit is contained in:
parent
143d0000c0
commit
737a1a380b
2 changed files with 22 additions and 1 deletions
20
.drone.yml
Normal file
20
.drone.yml
Normal 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"
|
|
@ -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!
|
||||
|
|
Loading…
Add table
Reference in a new issue