diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index eba4582bd309085e9de09e44857deafe0a62bc35..699fa2e01f52190520d5abe8918f55f11a598a4f 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: