From 28fd8532bf6b564babed74b376bb6e994cffe986 Mon Sep 17 00:00:00 2001 From: Piv Date: Sat, 1 Aug 2020 15:35:12 +0930 Subject: [PATCH] Fix credentials outside of Blue Ocean It was putting quotes into the environment even when I used credentials function. --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 2b47897..21253c3 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -24,6 +24,6 @@ pipeline { } environment { TWINE_REPOSITORY_URL = 'https://vato.ddns.net/nexus/repository/pypi-local/' - TWINE_COMMON_CREDS = 'credentials(\'2eddcc32-2914-4b5c-bec4-52d40cfba020\')' + TWINE_COMMON_CREDS = credentials('2eddcc32-2914-4b5c-bec4-52d40cfba020') } } \ No newline at end of file