fuzzysearch/.drone.yml

41 lines
687 B
YAML
Raw Normal View History

2020-01-17 23:13:24 +00:00
---
kind: pipeline
type: docker
name: default
platform:
os: linux
arch: amd64
steps:
2020-02-16 05:50:09 +00:00
- name: build-latest
2020-01-17 23:13:24 +00:00
image: plugins/docker
settings:
auto_tag: true
password:
from_secret: docker_password
registry: registry.huefox.com
repo: registry.huefox.com/fuzzysearch
username:
from_secret: docker_username
2020-02-16 05:50:09 +00:00
when:
branch:
- master
2020-01-17 23:13:24 +00:00
2020-02-16 05:50:09 +00:00
- name: build-branch
image: plugins/docker
settings:
password:
from_secret: docker_password
registry: registry.huefox.com
repo: registry.huefox.com/fuzzysearch
tags: ${DRONE_BRANCH}
username:
from_secret: docker_username
when:
branch:
exclude:
- master
2020-01-17 23:13:24 +00:00
...