forked from data.coop/website
21 lines
472 B
YAML
21 lines
472 B
YAML
|
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"
|