From 2cd15c04596eac940a57471a965db6f7731abce0 Mon Sep 17 00:00:00 2001 From: lsm Date: Tue, 11 Jul 2023 10:19:46 +0900 Subject: [PATCH] https -> http --- src/helpers/git.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/helpers/git.js b/src/helpers/git.js index faf97cc..20aaf71 100644 --- a/src/helpers/git.js +++ b/src/helpers/git.js @@ -40,7 +40,7 @@ module.exports = new (class Git { // Update the origin if (githubToken) { - await this.updateOrigin(`https://x-access-token:${githubToken}@${gitUrl}/${GITHUB_REPOSITORY}.git`) + await this.updateOrigin(`http://x-access-token:${githubToken}@${gitUrl}/${GITHUB_REPOSITORY}.git`) } }