Compare commits

..

1 Commits

Author SHA1 Message Date
0066384036 chore(ci): release docker image
Some checks failed
Cadoles/bouncer/pipeline/pr-develop There was a failure building this commit
2023-07-07 09:52:54 -06:00

9
Jenkinsfile vendored
View File

@ -64,13 +64,14 @@ pipeline {
withCredentials([
usernamePassword([
credentialsId: 'forge-jenkins',
usernameVariable: 'GITEA_RELEASE_USERNAME',
passwordVariable: 'GITEA_RELEASE_PASSWORD'
usernameVariable: 'DOCKER_REGISTRY_USERNAME',
passwordVariable: 'DOCKER_REGISTRY_PASSWORD'
])
]) {
sh '''
sh """
echo '${env.DOCKER_REGISTRY_PASSWORD}' | docker login --username '${env.DOCKER_REGISTRY_USERNAME}' --password-stdin reg.cadoles.com
make docker-build docker-release
'''
"""
}
}
}