From c72bee0c8225f93c50d8f81e70d302ab42002b0b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Pailharey?= <rpailharey@grandlyon.com> Date: Wed, 14 Aug 2024 15:00:24 +0200 Subject: [PATCH] ci: use factory group build token --- .gitlab-ci.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 09a56b8..2d72cfe 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -48,10 +48,10 @@ build-dev: - yarn - yarn build - git config --global user.name build-token - - git config --global user.email "$GIT_USER" - - git config --global user.password "$GIT_PWD" - - git config user.email "$GIT_USER" - - git remote set-url origin https://"$GIT_USER":"$GIT_PWD"@forge.grandlyon.com/web-et-numerique/factory/llle_project/enedis-sge-konnector.git + - git config --global user.email build-token + - git config --global user.password "$BUILD_TOKEN" + - git config user.email build-token + - git remote set-url origin https://build-token:"$BUILD_TOKEN"@forge.grandlyon.com/web-et-numerique/factory/llle_project/enedis-sge-konnector.git - git config --global credential.helper store - yarn deploy-dev only: @@ -67,10 +67,10 @@ build: - yarn - yarn build - git config --global user.name build-token - - git config --global user.email "$GIT_USER" - - git config --global user.password "$GIT_PWD" - - git config user.email "$GIT_USER" - - git remote set-url origin https://"$GIT_USER":"$GIT_PWD"@forge.grandlyon.com/web-et-numerique/factory/llle_project/enedis-sge-konnector.git + - git config --global user.email build-token + - git config --global user.password "$BUILD_TOKEN" + - git config user.email build-token + - git remote set-url origin https://build-token:"$BUILD_TOKEN"@forge.grandlyon.com/web-et-numerique/factory/llle_project/enedis-sge-konnector.git - git config --global credential.helper store - yarn deploy only: -- GitLab