graphicek/.drone.yml

20 lines
528 B
YAML
Raw Normal View History

2024-04-03 21:44:35 +02:00
kind: pipeline
type: docker
2024-04-03 21:50:45 +02:00
name: build & publish image
2024-04-03 21:44:35 +02:00
steps:
2024-04-03 21:50:45 +02:00
- name: build & publish
image: plugins/docker
settings:
2024-04-03 21:51:47 +02:00
registry: containers.zipek.cz
2024-04-03 21:50:45 +02:00
username:
from_secret: zipek_registry_username
password:
from_secret: zipek_registry_password
2024-04-03 23:15:27 +02:00
repo: containers.zipek.cz/kamen/graphicek
tags:
- "${DRONE_BRANCH}"
- "${DRONE_BRANCH}-${DRONE_COMMIT}"
cache_from:
- "containers.zipek.cz/kamen/graphicek:master"
- "containers.zipek.cz/kamen/graphicek:${DRONE_BRANCH}"