aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Segundo2024-08-11 20:47:05 +0200
committerChristian Segundo2024-08-11 20:47:05 +0200
commitb771a19850076ec309a63cb28c8edbb0a23cfe34 (patch)
treeb29590e5440f7c39bb2c3f82801531af457cd09a
parentc0310f05473f3dce9ddeeb8e02bd5f4e3b52c6e4 (diff)
downloadjenkins-agent-docker-cli-b771a19850076ec309a63cb28c8edbb0a23cfe34.tar.gz
debug
-rw-r--r--Jenkinsfile5
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 {