From 91ec8f21e9be7b66fb05f62be995fab821379f2c Mon Sep 17 00:00:00 2001 From: "Rodriguez, Kelvin" Date: Thu, 14 Sep 2023 18:45:09 +0000 Subject: [PATCH] Update .gitlab-ci.yml --- .gitlab-ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 091ab73..6003c67 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -11,8 +11,8 @@ clone_github: - chmod 700 ~/.ssh - ssh-keyscan $GIT_LAB_HOST >> ~/.ssh/known_hosts - chmod 644 ~/.ssh/known_hosts - - git config --global user.name "${GIT_USER_NAME}" - - git config --global user.email "${GIT_USER_EMAIL}" + - git config --global user.name "krodriguez" + - git config --global user.email "krodriguez@usgs.gov" - ssh "git@$GIT_LAB_HOST" script: - echo $SOURCE_REPOSITORY @@ -20,7 +20,7 @@ clone_github: - rm -rf spiceql # Needed to allow multiple CI runs - git config --global user.name "${GIT_USER_NAME}" - git config --global user.email "${GIT_USER_EMAIL}" - - git clone --mirror git@github.com:DOI-USGS/SpiceQL.git spiceql + - git clone --mirror $SOURCE_REPOSITORY spiceql - cd spiceql - git remote remove origin - git remote add origin $DESTINATION_REPOSITORY -- GitLab