1

Azure 继续部署无法与 github 私有存储库一起正常工作。我正在使用 Azure 部署按钮方法。

错误:响应状态码不表示成功:404(未找到)

自述文件

<a href="https://azuredeploy.net/?repos...{repoURL}" target="_blank"><img src="http://azuredeploy.net/deployb..."/></a>

azuredeploy-parameters.json

"repoUrl":{
"value":"{repourl}.git"
}

天蓝色部署.json

"repoURL": {
"type": "string",
"defaultValue": "{repoUrl}.git"
},
4

1 回答 1

0

当您尝试访问不公开且您无权访问的存储库时,Github 会返回 404 错误。
确保您从 Azure 用于连接到 Github 的 github 用户有权访问 Github 存储库。
使用 SSH 密钥连接到 Github 时,请确保 SSH 密钥链接到有权访问存储库的用户。

如果已正确配置,请查看以下问题:GitHub 组织未出现在持续部署页面中

于 2016-02-28T08:37:32.007 回答