Skip to content

Commit 70ed726

Browse files
authored
Zip deploy content-type fix (#10428)
1 parent 00553ca commit 70ed726

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
lines changed

Tasks/AzureFunctionAppContainerV1/task.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"version": {
1919
"Major": 1,
2020
"Minor": 0,
21-
"Patch": 9
21+
"Patch": 10
2222
},
2323
"minimumAgentVersion": "2.104.1",
2424
"groups": [

Tasks/AzureFunctionAppContainerV1/task.loc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"version": {
1919
"Major": 1,
2020
"Minor": 0,
21-
"Patch": 9
21+
"Patch": 10
2222
},
2323
"minimumAgentVersion": "2.104.1",
2424
"groups": [

Tasks/AzureFunctionAppV1/task.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"version": {
1919
"Major": 1,
2020
"Minor": 0,
21-
"Patch": 12
21+
"Patch": 13
2222
},
2323
"minimumAgentVersion": "2.104.1",
2424
"groups": [

Tasks/AzureFunctionAppV1/task.loc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"version": {
1919
"Major": 1,
2020
"Minor": 0,
21-
"Patch": 12
21+
"Patch": 13
2222
},
2323
"minimumAgentVersion": "2.104.1",
2424
"groups": [

Tasks/AzureWebAppContainerV1/task.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"version": {
1919
"Major": 1,
2020
"Minor": 0,
21-
"Patch": 11
21+
"Patch": 12
2222
},
2323
"minimumAgentVersion": "2.104.1",
2424
"groups": [

Tasks/AzureWebAppContainerV1/task.loc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"version": {
1919
"Major": 1,
2020
"Minor": 0,
21-
"Patch": 11
21+
"Patch": 12
2222
},
2323
"minimumAgentVersion": "2.104.1",
2424
"groups": [

Tasks/AzureWebAppV1/task.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"version": {
1919
"Major": 1,
2020
"Minor": 0,
21-
"Patch": 11
21+
"Patch": 12
2222
},
2323
"minimumAgentVersion": "2.104.1",
2424
"groups": [

Tasks/AzureWebAppV1/task.loc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"version": {
1919
"Major": 1,
2020
"Minor": 0,
21-
"Patch": 11
21+
"Patch": 12
2222
},
2323
"minimumAgentVersion": "2.104.1",
2424
"groups": [

Tasks/Common/AzureRmDeploy-common/azure-arm-rest/azure-arm-app-service-kudu.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -455,7 +455,7 @@ export class Kudu {
455455
httpRequest.body = fs.createReadStream(webPackage);
456456

457457
try {
458-
let response = await this._client.beginRequest(httpRequest, null, 'multipart/form-data');
458+
let response = await this._client.beginRequest(httpRequest, null, 'application/octet-stream');
459459
tl.debug(`ZIP Deploy response: ${JSON.stringify(response)}`);
460460
if(response.statusCode == 200) {
461461
tl.debug('Deployment passed');

0 commit comments

Comments
 (0)