Use webUrl instead of remoteUrl to set the value of repoContentsUrl.

Signed-off-by: Kevin L <kevin.lecouvey@gmail.com>
This commit is contained in:
Kevin L
2024-06-10 12:57:46 -04:00
parent 768d2c4216
commit f062a98710
@@ -187,9 +187,13 @@ export function createPublishAzureAction(options: {
throw new InputError('No Id returned from create repository for Azure');
}
// blam: Repo contents is serialized into the path,
// so it's just the base path I think
const repoContentsUrl = remoteUrl;
const repoContentsUrl = returnedRepo.webUrl;
if (!repoContentsUrl) {
throw new InputError(
'No web URL returned from create repository for Azure',
);
}
const gitAuthorInfo = {
name: gitAuthorName