From bae81dc0d31479c2442ce1e00e3d7e5b36037b13 Mon Sep 17 00:00:00 2001 From: Dennis Eisold <de@itstall.de> Date: Mon, 2 Dec 2019 05:20:48 +0100 Subject: [PATCH] Removed deploy stage from .gitlab-ci.yml --- .gitlab-ci.yml | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 96e0ce8..3564851 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -7,7 +7,6 @@ stages: - clean - build - test - - deploy Clean Project files: stage: clean @@ -24,13 +23,4 @@ Run JUnit tests and verify: reports: junit: - target/surefire-reports/TEST-*.xml - - target/failsafe-reports/TEST-*.xml - -Deploy new version as Release: - stage: deploy - script: - - mvn versions:set -DnewVersion=$CI_COMMIT_TAG - - mvn assembly:assembly - artifacts: - paths: - - target/*.jar \ No newline at end of file + - target/failsafe-reports/TEST-*.xml \ No newline at end of file -- GitLab