oci-images/.woodpecker/keycloak.yaml

27 lines
833 B
YAML
Raw Normal View History

2024-11-08 18:16:59 -06:00
when:
- event: push
branch: main
path:
- "keycloak/**"
- ".woodpecker/keycloak.yaml"
- event: tag
ref: "refs/tags/keycloak/*"
steps:
- name: build
image: quay.io/buildah/stable
commands:
2024-11-08 18:21:38 -06:00
- buildah build --manifest dev.ccchb.de/ccchb/oci-images/keycloak keycloak/
2024-11-08 18:23:31 -06:00
- buildah manifest push --all dev.ccchb.de/ccchb/oci-images/keycloak oci-archive:keycloak.tar
2024-11-08 18:16:59 -06:00
privileged: true
- name: push
image: quay.io/skopeo/stable
commands:
2024-11-08 18:17:52 -06:00
- "skopeo login dev.ccchb.de -u ccchb -p ${FORGEJO_API_TOKEN}"
- "skopeo copy oci-archive:keycloak.tar dev.ccchb.de/ccchb/oci-images/keycloak:${CI_COMMIT_TAG##keycloak/}"
- "skopeo copy oci-archive:keycloak.tar dev.ccchb.de/ccchb/oci-images/keycloak:latest"
2024-11-08 18:16:59 -06:00
secrets:
- FORGEJO_API_TOKEN
when:
event: tag