mirror of
https://github.com/cloudflare/wrangler-action.git
synced 2024-11-22 18:13:24 +01:00
Remove pages specific outputs from wrangler deploy command
This commit is contained in:
parent
d58f116d72
commit
e7e5400334
1 changed files with 1 additions and 4 deletions
|
@ -404,12 +404,9 @@ async function wranglerCommands(
|
||||||
|
|
||||||
// Check if this command is a workers deployment
|
// Check if this command is a workers deployment
|
||||||
if (command.startsWith("deploy") || command.startsWith("publish")) {
|
if (command.startsWith("deploy") || command.startsWith("publish")) {
|
||||||
const { deploymentUrl, aliasUrl } =
|
const { deploymentUrl } =
|
||||||
extractDeploymentUrlsFromStdout(stdOut);
|
extractDeploymentUrlsFromStdout(stdOut);
|
||||||
setOutput("deployment-url", deploymentUrl);
|
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
|
// Check if this command is a pages deployment
|
||||||
if (
|
if (
|
||||||
|
|
Loading…
Reference in a new issue