使用 azure cli 将 gitlab 工件部署到 microsoft azure web 应用程序

Deploy gitlab artifact to microsoft azure web app using azure cli

是否可以使用 azure cli 部署 GitLab 生成的工件。

# Deploy sample code to "staging" slot from GitHub.
az webapp deployment source config --name $webappname --resource-group myResourceGroup \
--slot staging --repo-url $gitrepo --branch master --manual-integration

与此类似,但只是工件而不是整个存储库

目前,Azure Cli 2.0 支持从 Git 或 Mercurial 存储库部署 webapp。目前不支持 Gitlab。

Group az webapp deployment source: Manage source control systems.

Commands: config : Associate to Git or Mercurial repositories.

您可以使用手动步骤部署您的网络应用程序。请参考这个link:Setting up continuous deployment using manual steps.