Commit e732ba71 authored by Rémy Coutable's avatar Rémy Coutable

Fix a wrong assets image name for gitlab-ee on 'dev'

Signed-off-by: default avatarRémy Coutable <remy@rymai.me>
parent 4d8ed0b1
...@@ -8,7 +8,8 @@ fi ...@@ -8,7 +8,8 @@ fi
# Generate the image name based on the project this is being run in # Generate the image name based on the project this is being run in
ASSETS_IMAGE_NAME="gitlab-assets-ce" ASSETS_IMAGE_NAME="gitlab-assets-ce"
if [[ "${CI_PROJECT_NAME}" == "gitlab" ]] # `dev.gitlab-org` still has gitlab-ee.
if [[ "${CI_PROJECT_NAME}" == "gitlab" ]] || [[ "${CI_PROJECT_NAME}" == "gitlab-ee" ]]
then then
ASSETS_IMAGE_NAME="gitlab-assets-ee" ASSETS_IMAGE_NAME="gitlab-assets-ee"
fi fi
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment