Skip to content

Commit

Permalink
Remove pages specific outputs from wrangler deploy command
Browse files Browse the repository at this point in the history
  • Loading branch information
Maximo-Guk committed Nov 13, 2024
1 parent 29ccb3e commit c7edd46
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/wranglerAction.ts
Original file line number Diff line number Diff line change
Expand Up @@ -404,12 +404,9 @@ async function wranglerCommands(

// Check if this command is a workers deployment
if (command.startsWith("deploy") || command.startsWith("publish")) {
const { deploymentUrl, aliasUrl } =
const { deploymentUrl } =
extractDeploymentUrlsFromStdout(stdOut);
setOutput("deployment-url", deploymentUrl);
// DEPRECATED: deployment-alias-url in favour of pages-deployment-alias, drop in next wrangler-action major version change
setOutput("deployment-alias-url", aliasUrl);
setOutput("pages-deployment-alias-url", aliasUrl);
}
// Check if this command is a pages deployment
if (
Expand Down

0 comments on commit c7edd46

Please sign in to comment.