diff options
author | Christian Segundo | 2024-08-11 20:47:05 +0200 |
---|---|---|
committer | Christian Segundo | 2024-08-11 20:47:05 +0200 |
commit | b771a19850076ec309a63cb28c8edbb0a23cfe34 (patch) | |
tree | b29590e5440f7c39bb2c3f82801531af457cd09a | |
parent | c0310f05473f3dce9ddeeb8e02bd5f4e3b52c6e4 (diff) | |
download | jenkins-agent-docker-cli-b771a19850076ec309a63cb28c8edbb0a23cfe34.tar.gz |
debug
-rw-r--r-- | Jenkinsfile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Jenkinsfile b/Jenkinsfile index a16496b..d29e541 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -18,7 +18,10 @@ pipeline { stage('Test') { steps { sh 'bash .scripts.d/30-test.sh' } } stage('Publish') { environment { DOCKERHUB_TOKEN = credentials('DOCKERHUB_TOKEN') } - steps { sh 'bash .scripts.d/40-publish.sh' } + steps { + sh 'env' + sh 'bash .scripts.d/40-publish.sh' + } } } post { |