ci: Publish container image to Gitea
All checks were successful
dustin/hudctrl/pipeline/head This commit looks good

The Docker Distribution image resitry is no more.
This commit is contained in:
2022-12-18 13:09:53 -06:00
parent a14921b79e
commit d278eedcbd
2 changed files with 10 additions and 2 deletions

7
ci/Jenkinsfile vendored
View File

@@ -63,7 +63,12 @@ pipeline {
stage('Publish Container') {
steps {
container('podman') {
sh '. ci/publish-container.sh'
withCredentials([usernameColonPassword(
credentialsId: 'jenkins-packages',
variable: 'PODMAN_AUTH',
)]) {
sh '. ci/publish-container.sh'
}
}
}
}