diff options
Diffstat (limited to 'Jenkinsfile')
-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 { |