Commit 468173e5 authored by Rémy Coutable's avatar Rémy Coutable

Merge branch '32280-fix-wrong-assets-image-on-dev' into 'master'

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

Closes #32280

See merge request gitlab-org/gitlab!17134
parents 48563479 e732ba71
......@@ -8,7 +8,8 @@ fi
# Generate the image name based on the project this is being run in
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
ASSETS_IMAGE_NAME="gitlab-assets-ee"
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