From e08219b6ea154f31a5906a5fafac1f22e000896a Mon Sep 17 00:00:00 2001 From: Tim Rizzi Date: Thu, 30 May 2019 23:16:46 +0000 Subject: [PATCH] Update yml file comments re: deploy --- lib/gitlab/ci/templates/Maven.gitlab-ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/gitlab/ci/templates/Maven.gitlab-ci.yml b/lib/gitlab/ci/templates/Maven.gitlab-ci.yml index 1e35c22d0b3..0109746b2be 100644 --- a/lib/gitlab/ci/templates/Maven.gitlab-ci.yml +++ b/lib/gitlab/ci/templates/Maven.gitlab-ci.yml @@ -39,15 +39,15 @@ verify:jdk8: <<: *verify image: maven:3.3.9-jdk-8 -# To deploy packages to the GitLab Maven Repository, create a ci_settings.xml file -# See https://gitlab.com/help/user/project/packages/maven_repository.md#creating-maven-packages-with-gitlab-cicd for more details. -# Please note: The Maven Repository is currently only available in GitLab Premium / Ultimate. +# To deploy packages from CI, create a ci_settings.xml file +# For deploying packages to GitLab's Maven Repository: See https://gitlab.com/help/user/project/packages/maven_repository.md#creating-maven-packages-with-gitlab-cicd for more details. +# Please note: The GitLab Maven Repository is currently only available in GitLab Premium / Ultimate. # For `master` branch run `mvn deploy` automatically. deploy:jdk8: stage: deploy script: - if [ ! -f ci_settings.xml ]; - then echo CI settings missing, please see https://gitlab.com/help/user/project/packages/maven_repository.md#creating-maven-packages-with-gitlab-cicd for instructions.; + then echo CI settings missing\! If deploying to GitLab Maven Repository, please see https://gitlab.com/help/user/project/packages/maven_repository.md#creating-maven-packages-with-gitlab-cicd for instructions.; fi - 'mvn $MAVEN_CLI_OPTS deploy -s ci_settings.xml' only: -- GitLab