Unverified Commit e91e87ab authored by Thomas Rooijakkers's avatar Thomas Rooijakkers
Browse files

Allow for ethical naming of default branches. 'Who is your main?' instead of 'Who is your master?'

parent c7a4649f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -31,7 +31,7 @@
    - |
      if [ -z "${DESTINATIONS}" ]; then
        DESTINATIONS="--destination=${CI_REGISTRY_IMAGE}:${CI_COMMIT_REF_NAME}"
        if [ "${CI_COMMIT_REF_NAME}" = "master" ]; then
        if [ "${CI_COMMIT_REF_NAME}" = "${CI_DEFAULT_BRANCH}" ]; then
          DESTINATIONS="${DESTINATIONS} --destination=${CI_REGISTRY_IMAGE}:latest"
        fi
      fi