jdk21-builder/.woodpecker/publish.yaml

18 lines
438 B
YAML
Raw Normal View History

2025-08-09 13:30:30 +02:00
when:
2025-08-10 11:11:56 +02:00
- event: manual
2025-08-09 13:30:30 +02:00
steps:
2025-08-10 11:11:56 +02:00
- name: publish
2025-08-09 17:32:47 +02:00
image: quay.io/podman/stable
2025-08-09 13:30:30 +02:00
commands:
2025-08-10 12:07:21 +02:00
- export REGISTRY=registry.mnl.de
- export IMAGE_TAG="$REGISTRY/mnl/jdk21-builder:$CI_COMMIT_REF"
# - podman build -t $IMAGE_TAG .
- echo $REGISTRY_TOKEN | podman login -u mnl --password-stdin registry.mnl.de
2025-08-09 17:32:47 +02:00
backend_options:
kubernetes:
securityContext:
privileged: true
2025-08-09 22:23:18 +02:00
runAsUser: 1000
runAsGroup: 1000