25 lines
919 B
YAML
25 lines
919 B
YAML
when:
|
|
- event: push
|
|
branch: main
|
|
path:
|
|
- "strichliste/**"
|
|
- ".woodpecker/strichliste.yaml"
|
|
- event: tag
|
|
ref: "refs/tags/strichliste/*"
|
|
|
|
steps:
|
|
- name: build
|
|
image: quay.io/buildah/stable
|
|
commands:
|
|
- buildah build --manifest dev.ccchb.de/ccchb/oci-images/strichliste strichliste/
|
|
- buildah manifest push --all dev.ccchb.de/ccchb/oci-images/strichliste oci-archive:/woodpecker/image.tar
|
|
privileged: true
|
|
- name: push
|
|
image: quay.io/skopeo/stable
|
|
commands:
|
|
- "skopeo copy --dest-creds ccchb:$${FORGEJO_API_TOKEN} oci-archive:/woodpecker/image.tar docker://dev.ccchb.de/ccchb/oci-images/strichliste:$${CI_COMMIT_TAG##strichliste/}"
|
|
- "skopeo copy --dest-creds ccchb:$${FORGEJO_API_TOKEN} oci-archive:/woodpecker/image.tar docker://dev.ccchb.de/ccchb/oci-images/strichliste:latest"
|
|
secrets:
|
|
- FORGEJO_API_TOKEN
|
|
when:
|
|
event: tag
|