Skip to content

Latest commit

 

History

History
29 lines (24 loc) · 695 Bytes

deploy-zip-curl-commands.md

File metadata and controls

29 lines (24 loc) · 695 Bytes
authorms.authorms.topicms.date
DavidCBerry13
daberry
include
01/30/2022
curl -X POST \ -H 'Content-Type: application/zip' \ -u <deployment-user> \ -T <zip-file-name> \ https://<app-name>.scm.azurewebsites.net/api/zipdeploy

For PowerShell, make sure to enclose the username in single quotes so PowerShell does not try to interpret the username as a PowerShell variable.

curl -X POST `-H 'Content-Type: application/zip'`-u '<deployment-user>'`-T <zip-file-name>` https://<app-name>.scm.azurewebsites.net/api/zipdeploy

close