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:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user