From 519c9b52df48f8dc530ccc9ce5b5106fb2c3bcc5 Mon Sep 17 00:00:00 2001
From: Marco Holz <marco.holz@fitko.de>
Date: Wed, 15 Sep 2021 07:40:59 +0000
Subject: [PATCH] fix CI: remove $CI_REGISTRY

---
 .gitlab-ci.yml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 89900434b..a6485acc0 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -38,7 +38,7 @@ build:
 
 upload:review:
   stage: upload
-  image: $CI_REGISTRY/alpine:latest
+  image: alpine:latest
   environment:
     name: review/$CI_COMMIT_REF_NAME
     on_stop: stop:review
@@ -55,7 +55,7 @@ upload:review:
 
 upload:production:
   stage: upload
-  image: $CI_REGISTRY/alpine:latest
+  image: alpine:latest
   environment:
     name: production
     url: https://docs.fitko.de/fit-connect/
@@ -70,7 +70,7 @@ upload:production:
 
 stop:review:
   stage: .post
-  image: $CI_REGISTRY/alpine:latest
+  image: alpine:latest
   environment:
     name: review/$CI_COMMIT_REF_NAME
     action: stop
-- 
GitLab