From e2588341d553880d7ca477bf6518a3a6c34d110f Mon Sep 17 00:00:00 2001 From: Emanuele Zattin Date: Mon, 9 Oct 2017 16:01:25 +0200 Subject: [PATCH] Use the proper variable name --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 99ebd46d..47407c0d 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -62,7 +62,7 @@ stage('build') { publishHTML([allowMissing: false, alwaysLinkToLastBuild: false, keepAll: false, reportDir: 'docs/output', reportFiles: 'index.html', reportName: 'Docs']) }), linux_node_debug: doDockerBuild('node Debug', { - withCredentials([string(credentialsId: 'codecov-token-js', variable: 'codecov-token')]) { + withCredentials([string(credentialsId: 'codecov-token-js', variable: 'CODECOV_TOKEN')]) { sh 'tests/node_modules/codecov/bin/codecov' } }),