Skip to content
Open
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,8 @@ inputs:
outputs:
webapp-url:
description: 'URL to work with your webapp'
webapp-deployment-id:
description: 'Deployment ID from your webapp publication'
branding:
icon: 'webapp.svg'
color: 'blue'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ class BaseWebAppDeploymentProvider {
}
console.log('App Service Application URL: ' + this.applicationURL);
core.setOutput('webapp-url', this.applicationURL);
core.setOutput('webapp-deployment-id', this.deploymentID);
});
}
initializeForSPN() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,8 @@ class WebAppDeploymentProvider extends BaseWebAppDeploymentProvider_1.BaseWebApp
yield (0, AnnotationUtility_1.addAnnotation)(this.actionParams.endpoint, this.appService, isDeploymentSuccess);
}
console.log('App Service Application URL: ' + this.applicationURL);
core.setOutput('webapp-url', this.applicationURL);
core.setOutput('webapp-url', this.deploymentID);
core.setOutput('webapp-deployment-id', this.deploymentID);
});
}
}
Expand Down
Loading