ci: fix build

This commit is contained in:
Anton Iakimov 2024-04-11 10:59:37 +02:00
parent 759e5e5c7b
commit c57c8aabc4
No known key found for this signature in database
GPG Key ID: DEA1FE58DD8BF7FA
1 changed files with 2 additions and 2 deletions

View File

@ -45,7 +45,7 @@ pipeline {
PATH = "/usr/local/go/bin:${env.PATH}:${env.GOPATH}/bin"
/* Makefile parameters */
DOCKER_IMAGE_NAME = 'statusteam/status-go'
DOCKER_IMAGE_CUSTOM_TAG = "ci-build-${utils.gitCommit()}"
DOCKER_IMAGE_CUSTOM_TAG = "ci-build-${git.commit()}"
}
stages {
@ -60,7 +60,7 @@ pipeline {
stage('Push') { steps { dir(env.REPO) { script {
withDockerRegistry([credentialsId: "dockerhub-statusteam-auto", url: ""]) {
image.push("v${utils.getVersion()}-${utils.gitCommit()}")
image.push("v${utils.getVersion()}-${git.commit()}")
}
} } } }