From 836d56dac016f9b841a6a90b54e490735676eb4b Mon Sep 17 00:00:00 2001
From: Martin Weise <martin.weise@tuwien.ac.at>
Date: Wed, 16 Apr 2025 09:12:02 +0200
Subject: [PATCH] Test

Signed-off-by: Martin Weise <martin.weise@tuwien.ac.at>
---
 .gitlab-ci.yml | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 1795a5a74e..8ffcff8050 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -519,11 +519,9 @@ clean-images:
   script:
     - bash ./.gitlab/remove-unsupported-images.sh
 
-release-images-amd64:
+release-images:
   stage: release
   image: docker:${DOCKER_VERSION}-dind
-  variables:
-    PLATFORM: linux/amd64
   dependencies:
     - clean-images
     - test-analyse-service
@@ -544,8 +542,10 @@ release-images-amd64:
     - "docker logout ${CI_REGISTRY2_URL}"
     - "echo ${CI_REGISTRY2_PASSWORD} | docker login --username ${CI_REGISTRY2_USER} --password-stdin ${CI_REGISTRY2_URL}"
   script:
-    - REPOSITORY_URL=$CI_REGISTRY_URL make release-images
-    - REPOSITORY_URL=$CI_REGISTRY2_URL make release-images
+    - PLATFORM=linux/amd64 REPOSITORY_URL=$CI_REGISTRY_URL make release-images
+    - PLATFORM=linux/amd64 REPOSITORY_URL=$CI_REGISTRY2_URL make release-images
+    - PLATFORM=linux/arm64 REPOSITORY_URL=$CI_REGISTRY_URL make release-images
+    - PLATFORM=linux/arm64 REPOSITORY_URL=$CI_REGISTRY2_URL make release-images
 
 release-helm:
   stage: release
-- 
GitLab