Skip to content

Commit e2b6b5d

Browse files
committed
testing linuxFxVersion
1 parent 7311eb4 commit e2b6b5d

File tree

10 files changed

+44
-58
lines changed

10 files changed

+44
-58
lines changed

lib/ActionInputValidator/ValidatorFactory.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,7 @@ class ValidatorFactory {
112112
params.kind = actionparameters_1.appKindMap.get(params.realKind);
113113
//app kind linux and kubeapp is supported only on linux environment currently
114114
params.isLinux = params.realKind.indexOf("linux") > -1 || params.realKind.indexOf("kubeapp") > -1;
115+
core.info(`LinuxFxVersion of app is: ${appDetails["linuxFxVersion"]}`);
115116
});
116117
}
117118
static setResourceDetails(actionParams) {

node_modules/.package-lock.json

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

node_modules/azure-actions-appservice-rest/Arm/SiteContainer.d.ts

Lines changed: 9 additions & 15 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/Arm/SiteContainer.js

Lines changed: 20 additions & 36 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: 2 additions & 0 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/SiteContainerDeploymentUtility.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 & 2 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.16",
37+
"azure-actions-appservice-rest": "^1.3.30",
3838
"azure-actions-utility": "1.0.3",
3939
"azure-actions-webclient": "^1.1.1"
4040
}

src/ActionInputValidator/ValidatorFactory.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,8 @@ export class ValidatorFactory {
6464
params.kind = appKindMap.get(params.realKind);
6565
//app kind linux and kubeapp is supported only on linux environment currently
6666
params.isLinux = params.realKind.indexOf("linux") > -1 || params.realKind.indexOf("kubeapp") > -1;
67+
68+
core.info(`LinuxFxVersion of app is: ${appDetails["linuxFxVersion"]}`);
6769
}
6870

6971
private static async setResourceDetails(actionParams: ActionParameters) {

0 commit comments

Comments
 (0)