From 9f1d0e8f273ca547ab6ebcc73a56aed6e0d5838d Mon Sep 17 00:00:00 2001 From: Dennis Bonke <dennisb@kabelfoon.net> Date: Thu, 7 Jun 2018 17:11:16 +0000 Subject: [PATCH] Updated .gitlab-ci.yml --- .gitlab-ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index eba4582..699fa2e 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -25,7 +25,7 @@ stages: setup-workspace: stage: setup - script: ./gradlew -i setupDevWorkspace -Pmaven_pass=$MAVEN_PASS + script: gradle -i setupDevWorkspace -Pmaven_pass=$MAVEN_PASS cache: key: "$CI_COMMIT_REF_NAME" policy: push @@ -35,7 +35,7 @@ setup-workspace: build-jar: stage: build - script: ./gradlew -i build -Pmaven_pass=$MAVEN_PASS + script: gradle -i build -Pmaven_pass=$MAVEN_PASS #cache: # key: "$CI_COMMIT_REF_NAME" # policy: push @@ -45,7 +45,7 @@ build-jar: deploy-to-maven: stage: deploy - script: ./gradlew -i uploadArchives -Pmaven_pass=$MAVEN_PASS + script: gradle -i uploadArchives -Pmaven_pass=$MAVEN_PASS only: - master #cache: -- GitLab