aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 {