bug: git-url-parse needs https prefix otherwise it fails to parse. Lovely.

Signed-off-by: blam <ben@blam.sh>
This commit is contained in:
blam
2021-03-31 13:51:31 +02:00
parent d53d01dcf5
commit 94d393b414
@@ -103,7 +103,9 @@ export function createPublishGithubAction(options: {
}
const { token } = await credentialsProvider.getCredentials({
url: `${host}/${encodeURIComponent(owner)}/${encodeURIComponent(repo)}`,
url: `https://${host}/${encodeURIComponent(owner)}/${encodeURIComponent(
repo,
)}`,
});
if (!token) {