From 9a9066ae73ef031f6efa5352938328cbc5d53a31 Mon Sep 17 00:00:00 2001 From: Janne Koschinski <janne@kuschku.de> Date: Fri, 12 Feb 2021 10:48:50 +0100 Subject: [PATCH] Correct the pipeline --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index b107d13..9d77661 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -7,8 +7,8 @@ cache: before_script: - "export GRADLE_USER_HOME=$(pwd)/.gradle" - - "echo $SIGNING_properties | base64 -d > $GRADLE_USER_HOME/gradle.properties" - - "echo $SIGNING_secretKey | base64 -d > $GRADLE_USER_HOME/sonatype_upload.gpg" + - "echo $SIGNING_properties | base64 -d > .gradle/gradle.properties" + - "echo $SIGNING_secretKey | base64 -d > .gradle/sonatype_upload.gpg" - "chmod +x ./gradlew" stages: -- GitLab