Update Jenkinsfile to update Jenkins with both the branch-buildNum AND branch image tag

This commit is contained in:
iFargle
2023-02-10 14:03:34 +09:00
parent 66196d0001
commit 5538dc6487

1
Jenkinsfile vendored
View File

@@ -65,6 +65,7 @@ pipeline {
} else {
docker.withRegistry('https://git.sysctl.io/', 'gitea-jenkins-pat') {
forgejoImage.push("${env.BRANCH_NAME}-${env.BUILD_ID}")
forgejoImage.push("${env.BRANCH_NAME}")
}
}
}