From 312e8165d0403e8125c211c5b3b10927dfaeea97 Mon Sep 17 00:00:00 2001 From: maxicarlos08 Date: Thu, 21 Dec 2023 15:19:05 +0100 Subject: [PATCH 1/2] use bitnami/git image for gittag job --- .gitlab/CI/publish.gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab/CI/publish.gitlab-ci.yml b/.gitlab/CI/publish.gitlab-ci.yml index bda73f5c1a..dcb1d8be5e 100644 --- a/.gitlab/CI/publish.gitlab-ci.yml +++ b/.gitlab/CI/publish.gitlab-ci.yml @@ -33,7 +33,7 @@ gittag: extends: .publish rules: - if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_PIPELINE_SOURCE == "schedule" - image: registry.gitlab.com/veloren/veloren-docker-ci/base/common:${CACHE_IMAGE_TAG} + image: bitnami/git:latest dependencies: [] tags: ["veloren/veloren", "publish", "trusted"] script: From 58592e9ae070c8ce8063f7228bbc1fab1f830500 Mon Sep 17 00:00:00 2001 From: maxicarlos08 Date: Thu, 21 Dec 2023 15:42:46 +0100 Subject: [PATCH 2/2] print git version in gittag job --- .gitlab/CI/publish.gitlab-ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitlab/CI/publish.gitlab-ci.yml b/.gitlab/CI/publish.gitlab-ci.yml index dcb1d8be5e..d801f21249 100644 --- a/.gitlab/CI/publish.gitlab-ci.yml +++ b/.gitlab/CI/publish.gitlab-ci.yml @@ -37,6 +37,8 @@ gittag: dependencies: [] tags: ["veloren/veloren", "publish", "trusted"] script: + # Show git and git lfs version for debugging + - git version && git lfs --version - git config --global user.email "gitlab-veloren-bot@veloren.net" - git config --global user.name "veloren-bot" - git config --global http.postBuffer 52428800