2024-11-08 18:16:59 -06:00
|
|
|
when:
|
|
|
|
- event: tag
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: build
|
|
|
|
image: quay.io/buildah/stable
|
|
|
|
commands:
|
2025-01-24 18:40:17 -06:00
|
|
|
- buildah build --manifest dev.ccchb.de/ccchb/oci-images/$${CI_COMMIT_TAG%/*} $${CI_COMMIT_TAG%/*}/
|
|
|
|
- buildah manifest push --all dev.ccchb.de/ccchb/oci-images/$${CI_COMMIT_TAG%/*} oci-archive:/woodpecker/image.tar
|
2024-11-08 18:16:59 -06:00
|
|
|
privileged: true
|
|
|
|
- name: push
|
|
|
|
image: quay.io/skopeo/stable
|
|
|
|
commands:
|
2025-01-24 18:40:17 -06:00
|
|
|
- "skopeo copy --dest-creds ccchb:$${FORGEJO_API_TOKEN} oci-archive:/woodpecker/image.tar docker://dev.ccchb.de/ccchb/oci-images/$${CI_COMMIT_TAG%/*}:$${CI_COMMIT_TAG##*/}"
|
|
|
|
- "skopeo copy --dest-creds ccchb:$${FORGEJO_API_TOKEN} oci-archive:/woodpecker/image.tar docker://dev.ccchb.de/ccchb/oci-images/$${CI_COMMIT_TAG%/*}:latest"
|
2024-12-22 07:58:01 -06:00
|
|
|
environment:
|
|
|
|
FORGEJO_API_TOKEN:
|
|
|
|
from_secret: FORGEJO_API_TOKEN
|