File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " azure-actions-appservice-rest" ,
3
- "version" : " 1.3.2 " ,
3
+ "version" : " 1.3.3 " ,
4
4
"description" : " Azure resource manager and kudu node rest module" ,
5
5
"keywords" : [
6
6
" appservice" ,
Original file line number Diff line number Diff line change @@ -207,8 +207,7 @@ export class KuduServiceUtility {
207
207
throw 'The container image to be deployed to App Service is empty.' ;
208
208
}
209
209
210
- let fxVersionName = isLinux ? 'LinuxFxVersion' : 'WindowsFxVersion' ;
211
- let headers = { fxVersionName : `DOCKER|${ images } ` } ;
210
+ let headers = isLinux ? { 'LinuxFxVersion' : `DOCKER|${ images } ` } : { 'WindowsFxVersion' : `DOCKER|${ images } ` } ;
212
211
await this . _webAppKuduService . imageDeploy ( headers ) ;
213
212
console . log ( 'Successfully deployed image to App Service.' ) ;
214
213
}
You can’t perform that action at this time.
0 commit comments