Skip to content

Commit 19306d3

Browse files
committed
test
1 parent 15e8c98 commit 19306d3

File tree

7 files changed

+13
-11
lines changed

7 files changed

+13
-11
lines changed

lib/DeploymentProvider/Providers/BaseWebAppDeploymentProvider.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@ class BaseWebAppDeploymentProvider {
9090
this.kuduService = yield this.appServiceUtility.getKuduService();
9191
this.kuduServiceUtility = new KuduServiceUtility_1.KuduServiceUtility(this.kuduService);
9292
this.applicationURL = yield this.appServiceUtility.getApplicationURL();
93+
core.info(`Application config is: ${JSON.stringify(this.appService.getConfiguration())}`);
9394
});
9495
}
9596
initializeForPublishProfile() {

node_modules/.package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/azure-actions-appservice-rest/Utilities/AzureResourceFilterUtility.js

Lines changed: 1 addition & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/azure-actions-appservice-rest/package.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package-lock.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
"@actions/core": "^1.10.0",
3535
"@actions/github": "^4.0.0",
3636
"actions-secret-parser": "^1.0.4",
37-
"azure-actions-appservice-rest": "^1.3.31-test.2",
37+
"azure-actions-appservice-rest": "^1.3.29",
3838
"azure-actions-utility": "1.0.3",
3939
"azure-actions-webclient": "^1.1.1"
4040
}

src/DeploymentProvider/Providers/BaseWebAppDeploymentProvider.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,8 @@ export abstract class BaseWebAppDeploymentProvider implements IWebAppDeploymentP
6565
this.kuduServiceUtility = new KuduServiceUtility(this.kuduService);
6666

6767
this.applicationURL = await this.appServiceUtility.getApplicationURL();
68+
69+
core.info(`Application config is: ${JSON.stringify(this.appService.getConfiguration())}`);
6870
}
6971

7072
private async initializeForPublishProfile() {

0 commit comments

Comments
 (0)