Deployment Failed. deployer = GITHUB_ZIP_DEPLOY deploymentPath = ZipDeploy. Extract zip. Remote build. Error: Failed to deploy web package to App Service. Error: Deployment Failed, Package deployment using ZIP Deploy failed. Refer logs for more details.
我正在使用GitHub部署我的Django应用程序到Azure应用程序服务它一直工作正常,直到GitHub开始使用zip部署或包部署,然后它给了我这个错误。
我尝试在我的应用配置中添加WEBSITE_RUN_FROM_PACKAGE=1
,部署在GitHub中没有错误,但应用根本不工作。
1条答案
按热度按时间31moq8wy1#
Azure App Service=>Deployment Center=>Logs
中的日志以详细了解错误。App Service=>Configuration=>New Application Settings(in old Azure portal) (or) App Service=>Environmental variables
中添加设置 SCM_DO_BUILD_DURING_DEPLOYMENT=1 和 ENABLE_ORYX_BUILD=1。GitHub Actions
)进行部署。我使用 *GitHub Actions * 将一个 * 简单的Django Web应用程序 * 部署到 Azure App Service。
执行步骤:
Enabling continuous deployment
在 *Azure门户 * 中创建 * 应用服务 * 期间配置 * 部署 *,并选择GitHub repository and branch of your Django project
。your repository=>Actions
中跟踪。我的工作流(.yml):
部署成功:
回复: