You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
470 B
24 lines
470 B
---
|
|
kind: pipeline
|
|
name: default
|
|
|
|
steps:
|
|
- name: test
|
|
image: ruby:2.6.6-alpine
|
|
commands:
|
|
- apk add --no-cache build-base
|
|
- gem install bundler
|
|
- bundle install
|
|
- rake spec
|
|
- name: docker
|
|
image: plugins/docker
|
|
settings:
|
|
username: datenimperator
|
|
password:
|
|
from_secret: docker_token
|
|
registry: registry.hub.docker.com
|
|
repo: registry.hub.docker.com/datenimperator/sanity
|
|
auto_tag: true
|
|
when:
|
|
branch: master
|
|
status: success
|