exim-docker/.woodpecker.yml
Wolfgang Hottgenroth ab7eb0a3f0
Some checks failed
ci/woodpecker/push/woodpecker Pipeline was successful
ci/woodpecker/tag/woodpecker Pipeline failed
quay fix
2024-12-10 14:00:50 +01:00

32 lines
852 B
YAML

steps:
build:
image: plugins/kaniko
settings:
repo: ${FORGE_NAME}/${CI_REPO}
registry:
from_secret: container_registry
tags: latest,${CI_COMMIT_SHA},${CI_COMMIT_TAG}
username:
from_secret: container_registry_username
password:
from_secret: container_registry_password
dockerfile: Dockerfile
when:
- event: [push, tag]
public_build:
image: plugins/kaniko
settings:
repo: wollud1969/exim-docker
registry: quay.io
tags:
- quay.io/wollud1969/exim-docker/latest
- quay.io/wollud1969/exim-docker/${CI_COMMIT_SHA}
- quay.io/wollud1969/exim-docker/${CI_COMMIT_TAG}
username:
from_secret: quay_username
password:
from_secret: quay_password
dockerfile: Dockerfile
when:
- event: [tag]