Azure DevOps 部署到本地服务器?
Azure DevOps deploy to on-prem servers?
我正在研究如何将发布管道发布到本地服务器。我已阅读有关作为代理池一部分的自托管代理的信息。但我也在阅读有关目标服务器的部署组的信息。如果我错了,请纠正我,但部署组似乎是分散部署,因为每台目标机器都需要安装代理并负责将文件部署到同一台机器上。我还读到部署组仅适用于经典发布管道。那么部署组是否已弃用?任何指导将不胜感激。
Apart from classic release pipelines, you can use YAML to author CI/CD pipelines, Create your first pipeline.
It's possible.
All you need is a self-hosted agent and a deployment group. In my pipeline build I used the following tasks: MSBuild@1
PublishBuildArtifacts@1
Then in Release Pipeline:
IIS Deployment
您可以在 Azure DevOps Feature Timeline
查看可用性和即将推出的功能
参考资料:
Automating deployments to on premise servers with Azure DevOps
我正在研究如何将发布管道发布到本地服务器。我已阅读有关作为代理池一部分的自托管代理的信息。但我也在阅读有关目标服务器的部署组的信息。如果我错了,请纠正我,但部署组似乎是分散部署,因为每台目标机器都需要安装代理并负责将文件部署到同一台机器上。我还读到部署组仅适用于经典发布管道。那么部署组是否已弃用?任何指导将不胜感激。
Apart from classic release pipelines, you can use YAML to author CI/CD pipelines, Create your first pipeline.
It's possible. All you need is a self-hosted agent and a deployment group. In my pipeline build I used the following tasks: MSBuild@1 PublishBuildArtifacts@1 Then in Release Pipeline: IIS Deployment
您可以在 Azure DevOps Feature Timeline
查看可用性和即将推出的功能参考资料:
Automating deployments to on premise servers with Azure DevOps