20 lines
504 B
YAML
20 lines
504 B
YAML
kind: pipeline
|
|
type: docker
|
|
name: image building
|
|
|
|
steps:
|
|
- name: build&push
|
|
image: harbor.hq.rosti.cz/library/builder:35
|
|
environment:
|
|
username: robot$library+droneci
|
|
password:
|
|
from_secret: repo_password
|
|
repo: harbor.hq.rosti.cz/library/builder
|
|
tag: 35
|
|
commands:
|
|
- echo "$password" | podman login -u $username --password-stdin harbor.hq.rosti.cz
|
|
- podman build -t $repo:$tag .
|
|
- podman tag $repo:$tag $repo:latest
|
|
- podman push $repo:$tag
|
|
- podman push $repo:latest
|