Skip to content

Commit fc3aa05

Browse files
committed
(MINOR) Fix VERCEL_ALIASES_CREATED (forgot to recompile)
1 parent cef8c07 commit fc3aa05

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/vercel.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,9 +111,9 @@ const createAliases = (deploymentUrl, customDeploymentFile, failIfAliasNotLinked
111111
for (const aliasSuccess of aliasesSucceeded) {
112112
core.debug(`Created alias "${aliasSuccess === null || aliasSuccess === void 0 ? void 0 : aliasSuccess.alias}".`);
113113
}
114-
const aliasesUrlsMarkdown = aliasesSucceeded.map((aliasSuccess) => `[aliasSuccess.alias](https://aliasSuccess.alias)`).join(', ');
114+
const aliasesUrlsMarkdown = aliasesSucceeded.map((aliasSuccess) => `[${aliasSuccess === null || aliasSuccess === void 0 ? void 0 : aliasSuccess.alias}](https://${aliasSuccess === null || aliasSuccess === void 0 ? void 0 : aliasSuccess.alias})`).join(', ');
115115
core.setOutput('VERCEL_ALIASES_CREATED', aliasesSucceeded);
116-
core.exportVariable('VERCEL_ALIASES_CREATED', aliasesSucceeded.map((aliasSuccess) => aliasSuccess.alias).join(', '));
116+
core.exportVariable('VERCEL_ALIASES_CREATED', aliasesSucceeded.map((aliasSuccess) => aliasSuccess === null || aliasSuccess === void 0 ? void 0 : aliasSuccess.alias).join(', '));
117117
core.setOutput('VERCEL_ALIASES_CREATED_URLS_MD', aliasesUrlsMarkdown);
118118
core.exportVariable('VERCEL_ALIASES_CREATED_URLS_MD', aliasesUrlsMarkdown);
119119
}

0 commit comments

Comments
 (0)