Skip to content

Commit 541dc43

Browse files
committed
Changed output name
1 parent 63421b8 commit 541dc43

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

lib/deploy.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@ const deploy = (command, deployAlias) => __awaiter(void 0, void 0, void 0, funct
6161
core.debug(`Custom deploy file: ${customDeploymentFile}`);
6262
if (deploymentUrl) {
6363
core.debug(`Found url deployment: ${deploymentUrl}. Exporting it...`);
64-
core.exportVariable("DEPLOYMENT_URL", deploymentUrl);
65-
core.setOutput("DEPLOYMENT_URL", deploymentUrl);
64+
core.exportVariable("VERCEL_DEPLOYMENT_URL", deploymentUrl);
65+
core.setOutput("VERCEL_DEPLOYMENT_URL", deploymentUrl);
6666
if (deployAlias) {
6767
core.debug(`Starting to link aliases`);
6868
const globber = yield glob.create(customDeploymentFile);

src/deploy.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ const deploy = async (command: string, deployAlias: boolean): Promise<void> => {
3939

4040
if (deploymentUrl) {
4141
core.debug(`Found url deployment: ${deploymentUrl}. Exporting it...`);
42-
core.exportVariable("DEPLOYMENT_URL", deploymentUrl);
43-
core.setOutput("DEPLOYMENT_URL", deploymentUrl);
42+
core.exportVariable("VERCEL_DEPLOYMENT_URL", deploymentUrl);
43+
core.setOutput("VERCEL_DEPLOYMENT_URL", deploymentUrl);
4444
if (deployAlias) {
4545
core.debug(`Starting to link aliases`);
4646
const globber: Globber = await glob.create(customDeploymentFile)

0 commit comments

Comments
 (0)