From 0d0c1659c638c97df14bc7b015b64f78bb18f1ef Mon Sep 17 00:00:00 2001 From: Thore Cimbal Date: Fri, 31 Jul 2026 12:00:00 +0000 Subject: [PATCH] ci: desktop_image in die Lab-Registry (OVERMIND-01, CI_JOB_TOKEN statt rohana-Secret) --- .gitlab-ci.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 12589ab5c..e6319530b 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -107,9 +107,10 @@ desktop_image: when: manual allow_failure: true variables: - IMAGE: rohana.axion1337.de/sorb/element-desktop-build + # Lab-Registry statt rohana (OVERMIND-01): Konsument ist nur die Lab-CI selbst + IMAGE: $CI_REGISTRY_IMAGE/desktop-build script: - - echo "$REGISTRY_PASSWORD" | docker login rohana.axion1337.de -u "$REGISTRY_USER" --password-stdin + - echo "$CI_JOB_TOKEN" | docker login "$CI_REGISTRY" -u gitlab-ci-token --password-stdin - docker build -f apps/desktop/dockerbuild/Dockerfile -t "$IMAGE:bullseye" apps/desktop - docker push "$IMAGE:bullseye"