Fix credentials outside of Blue Ocean

It was putting quotes into the environment even when I used credentials function.
This commit is contained in:
Piv
2020-08-01 15:35:12 +09:30
parent 774cbd1af0
commit 28fd8532bf

2
Jenkinsfile vendored
View File

@@ -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')
}
}