docker-healthchecks/.drone.yml
Jeffrey C. Ollie 9245db8c64
Some checks failed
continuous-integration/drone/push Build is failing
continuous-integration/drone Build is failing
upgrade to 1.23.1 and switch to local repo
2021-10-13 11:23:06 -05:00

32 lines
590 B
YAML

---
kind: secret
name: local_username
get:
path: local
name: username
---
kind: secret
name: local_password
get:
path: local
name: password
---
kind: pipeline
type: kubernetes
name: build
steps:
- name: publish
image: plugins/kaniko
settings:
build_args:
- VERSION=1.23.1
repo: r.ocj.io/network/healthchecks
repository: r.ocj.io
username:
from_secret: local_username
password:
from_secret: local_password
tags:
- "latest"
- "latest-${DRONE_BUILD_NUMBER}"
- "1.23.1-${DRONE_BUILD_NUMBER}"