Forgot 1 layer of script in Jenkins

This commit is contained in:
30hours 2024-02-16 00:38:08 +00:00
parent 76d83721eb
commit 0b6c085131

11
Jenkinsfile vendored
View file

@ -29,13 +29,14 @@ pipeline {
}
stage('Push') {
steps {
echo 'Pushing the application'
script {
echo 'Pushing the application'
docker.withRegistry("${GHCR_REGISTRY}", "${GHCR_TOKEN}") {
blah2.push()
blah2_api.push()
docker.withRegistry("${GHCR_REGISTRY}", "${GHCR_TOKEN}") {
blah2.push()
blah2_api.push()
}
}
}
}
}