From a70592bcd15244ab4de28677b27e59f88a98916e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roque=20L=C3=B3pez?= Date: Wed, 29 May 2024 11:21:59 -0400 Subject: [PATCH] Fix origin --- .github/workflows/push_gitlab.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/push_gitlab.yml b/.github/workflows/push_gitlab.yml index cf0503d..fe0073e 100644 --- a/.github/workflows/push_gitlab.yml +++ b/.github/workflows/push_gitlab.yml @@ -27,5 +27,5 @@ jobs: GITLAB_URL: ${{ secrets.GITLAB_URL }} GITLAB_TOKEN: ${{ secrets.GITLAB_TOKEN }} run: | - git remote add gitlab https://oauth2:$GITLAB_TOKEN@$GITLAB_URL - git push -u gitlab main + git remote set-url origin https://oauth2:$GITLAB_TOKEN@$GITLAB_URL + git push origin main