Use gitlab-ce as default project name in asset image building

Signed-off-by: Balasankar "Balu" C <balasankar@gitlab.com>
This commit is contained in:
Balasankar "Balu" C 2019-03-15 19:07:09 +05:30
parent de2106998a
commit 313022c79a
No known key found for this signature in database
GPG Key ID: B77D2E2E23735427
1 changed files with 2 additions and 4 deletions

View File

@ -7,10 +7,8 @@ then
fi
# Generate the image name based on the project this is being run in
if [[ "${CI_PROJECT_NAME}" == "gitlab-ce" ]] || [[ "${CI_PROJECT_NAME}" == "gitlabhq" ]]
then
ASSETS_IMAGE_NAME="gitlab-assets-ce"
elif [[ "${CI_PROJECT_NAME}" == "gitlab-ee" ]]
ASSETS_IMAGE_NAME="gitlab-assets-ce"
if [[ "${CI_PROJECT_NAME}" == "gitlab-ee" ]]
then
ASSETS_IMAGE_NAME="gitlab-assets-ee"
fi