fix name logic

This commit is contained in:
Ric Harvey
2018-06-18 18:47:02 +01:00
parent f2f09a83b0
commit 845eb2dd43

View File

@@ -13,6 +13,6 @@ build:
stage: build stage: build
script: script:
- echo Build started on `date` for $CI_COMMIT_REF_NAME - echo Build started on `date` for $CI_COMMIT_REF_NAME
- if [[ "$CI_REGISTRY" =~ "master" ]]; then export build=latest done else build=$CI_REGISTRY fi - if [[ "$CI_COMMIT_REF_NAME" =~ "master" ]]; then export build=latest; else export build=$CI_COMMIT_REF_NAME; fi
- docker build -t richarvey/nginx-php-fpm:"$build" . - docker build -t richarvey/nginx-php-fpm:"$build" .
- docker push richarvey/nginx-php-fpm:"$build" - docker push richarvey/nginx-php-fpm:"$build"