Skip to content

Commit a6678b8

Browse files
committed
fix: correct bad hostname in mirror-main-to-gitlab workflow
1 parent 594f836 commit a6678b8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/mirror-main-to-gitlab.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
GITLAB_URL: ${{ secrets.GITLAB_SERVER_URL }}
2121
GITLAB_TOKEN: ${{ secrets.GITLAB_BOT_REPO_TOKEN }}
2222
GITLAB_USERNAME: "oauth2"
23-
GITLAB_REPO: "$GITLAB_URL/espressif/developer-portal.git"
2423
run: |
25-
git remote add gitlab https://$GITLAB_USERNAME:$GITLAB_TOKEN@$GITLAB_REPO
24+
GITLAB_REPO: "$GITLAB_URL/espressif/developer-portal.git"
25+
git remote add gitlab "https://$GITLAB_USERNAME:$GITLAB_TOKEN@$GITLAB_REPO"
2626
git push gitlab main

0 commit comments

Comments
 (0)