diff --git a/Jenkinsfile b/Jenkinsfile index 2e30dd4..30265fc 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -59,7 +59,9 @@ pipeline { stage('build::linux::amd64::build') { steps { echo "Deploy channel (empty on no deploy): ${teaclient_deploy_channel}" - sh './build_client.sh' + withCredentials([string(credentialsId: 'teaclient_deploy_secret', variable: 'teaclient_deploy_secret')]) { + sh './build_client.sh' + } } } }