Skip to content

Commit

Permalink
Azure Web App Linux - include image name in runtime stack (#10372)
Browse files Browse the repository at this point in the history
* include image name in runtime stack

* added support for parent task
  • Loading branch information
vincent1173 committed May 16, 2019
1 parent b81378c commit ea35c8e
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions Tasks/AzureRmWebAppDeploymentV4/task.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"version": {
"Major": 4,
"Minor": 3,
"Patch": 29
"Patch": 30
},
"releaseNotes": "What's new in version 4.*<br />Supports Zip Deploy, Run From Package, War Deploy [Details here](https://aka.ms/appServiceDeploymentMethods)<br />Supports App Service Environments<br />Improved UI for discovering different App service types supported by the task<br/>Run From Package is the preferred deployment method, which makes files in wwwroot folder read-only<br/>Click [here](https://aka.ms/azurermwebdeployreadme) for more information.",
"minimumAgentVersion": "2.104.1",
Expand Down Expand Up @@ -477,7 +477,7 @@
"parameters": {
"osTypeSelected": "Linux"
},
"resultTemplate": "{\"Value\":\"{{{ runtimeVersion }}}\",\"DisplayValue\":\"{{{ displayVersion }}}\"}"
"resultTemplate": "{\"Value\":\"{{{ runtimeVersion }}}\",\"DisplayValue\":\"{{{ displayVersion }}} ({{{ runtimeVersion }}})\"}"
}
],
"instanceNameFormat": "Azure App Service Deploy: $(WebAppName)",
Expand Down
4 changes: 2 additions & 2 deletions Tasks/AzureRmWebAppDeploymentV4/task.loc.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"version": {
"Major": 4,
"Minor": 3,
"Patch": 29
"Patch": 30
},
"releaseNotes": "ms-resource:loc.releaseNotes",
"minimumAgentVersion": "2.104.1",
Expand Down Expand Up @@ -477,7 +477,7 @@
"parameters": {
"osTypeSelected": "Linux"
},
"resultTemplate": "{\"Value\":\"{{{ runtimeVersion }}}\",\"DisplayValue\":\"{{{ displayVersion }}}\"}"
"resultTemplate": "{\"Value\":\"{{{ runtimeVersion }}}\",\"DisplayValue\":\"{{{ displayVersion }}} ({{{ runtimeVersion }}})\"}"
}
],
"instanceNameFormat": "ms-resource:loc.instanceNameFormat",
Expand Down
4 changes: 2 additions & 2 deletions Tasks/AzureWebAppV1/task.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"version": {
"Major": 1,
"Minor": 0,
"Patch": 13
"Patch": 14
},
"minimumAgentVersion": "2.104.1",
"groups": [
Expand Down Expand Up @@ -218,7 +218,7 @@
"parameters": {
"osTypeSelected": "Linux"
},
"resultTemplate": "{\"Value\":\"{{{ runtimeVersion }}}\",\"DisplayValue\":\"{{{ displayVersion }}}\"}"
"resultTemplate": "{\"Value\":\"{{{ runtimeVersion }}}\",\"DisplayValue\":\"{{{ displayVersion }}} ({{{ runtimeVersion }}})\"}"
}
],
"instanceNameFormat": "Azure Web App Deploy: $(appName)",
Expand Down
4 changes: 2 additions & 2 deletions Tasks/AzureWebAppV1/task.loc.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"version": {
"Major": 1,
"Minor": 0,
"Patch": 13
"Patch": 14
},
"minimumAgentVersion": "2.104.1",
"groups": [
Expand Down Expand Up @@ -218,7 +218,7 @@
"parameters": {
"osTypeSelected": "Linux"
},
"resultTemplate": "{\"Value\":\"{{{ runtimeVersion }}}\",\"DisplayValue\":\"{{{ displayVersion }}}\"}"
"resultTemplate": "{\"Value\":\"{{{ runtimeVersion }}}\",\"DisplayValue\":\"{{{ displayVersion }}} ({{{ runtimeVersion }}})\"}"
}
],
"instanceNameFormat": "ms-resource:loc.instanceNameFormat",
Expand Down

0 comments on commit ea35c8e

Please sign in to comment.