diff --git a/Jenkinsfile b/Jenkinsfile index 30d321b..707771c 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -42,6 +42,9 @@ pipeline{ script { docker.withRegistry("https://ghcr.io", "ghcr_login") { app.push("${imageTag}") + if (env.BRANCH_NAME == 'main') { + app.push('latest') + } } } }