runtime/.drone.yml
Adam Štrauch d0bc79d901
All checks were successful
continuous-integration/drone/push Build is passing
Fix docker variable in pipeline
2021-11-19 18:11:54 +01:00

42 lines
839 B
YAML

kind: pipeline
type: docker
name: image building
steps:
- name: build&push squashed image
image: harbor.hq.rosti.cz/library/builder:35
environment:
username: robot$rosti+rosti
password:
from_secret: repo_password
repo: harbor.hq.rosti.cz
privileged: true
commands:
- echo "$password" | podman login -u $username --password-stdin $repo
- make DOCKER=podman push
trigger:
event:
- promote
target:
- production
---
kind: pipeline
type: docker
name: test image building
steps:
- name: test build
image: harbor.hq.rosti.cz/library/builder:35
environment:
username: robot$rosti+rosti
password:
from_secret: repo_password
repo: harbor.hq.rosti.cz
privileged: true
commands:
- echo "$password" | podman login -u $username --password-stdin $repo
- make DOCKER=podman build