You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/azure-resource-manager/resource-manager-tutorial-use-azure-pipelines.md
+11-13Lines changed: 11 additions & 13 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,9 +20,7 @@ ms.author: jgao
20
20
21
21
Learn how to use Azure Pipelines to continuously build and deploy Azure Resource Manager template projects.
22
22
23
-
Azure DevOps provides developer services to support teams to plan work, collaborate on code development, and build and deploy applications. Developers can work in the cloud using Azure DevOps Services or on-premises using Azure DevOps Server.
24
-
25
-
Azure DevOps provides an integrated set of features that you can access through your web browser or IDE client. Azure Pipeline is one of these features. Azure Pipelines is a fully featured continuous integration (CI) and continuous delivery (CD) service. It works with your preferred Git provider and can deploy to most major cloud services. Then you can automate the build, testing, and deployment of your code to Microsoft Azure, Google Cloud Platform, or Amazon Web Services.
23
+
Azure DevOps provides developer services to support teams to plan work, collaborate on code development, and build and deploy applications. Developers can work in the cloud using Azure DevOps Services. Azure DevOps provides an integrated set of features that you can access through your web browser or IDE client. Azure Pipeline is one of these features. Azure Pipelines is a fully featured continuous integration (CI) and continuous delivery (CD) service. It works with your preferred Git provider and can deploy to most major cloud services. Then you can automate the build, testing, and deployment of your code to Microsoft Azure, Google Cloud Platform, or Amazon Web Services.
26
24
27
25
This tutorial is designed for Azure Resource Manager template developers who are new Azure DevOps Services and Azure Pipelines. If you are already familiar with GitHub and DevOps, you can skip to [Create a pipeline](#create-a-pipeline).
28
26
@@ -62,7 +60,7 @@ If you don’t have a GitHub account, see [Prerequisites](#prerequisites).
62
60
1. Sign in to [GitHub](https://github.com).
63
61
2. Select your account image on the upper right corner, and then select **Your repositories**.
1. In **Repository name**, enter a repository name. For example, **AzureRmPipeline-repo**. Remember to replace any of **AzureRmPipeline** with your project name. You can select either **Public** or **private** for going through this tutorial. And then select **Create repository**.
@@ -92,7 +90,7 @@ This repository is referred to as a *remote repository*. Each of the developers
The **CreateAzureStorage** folder is the folder where the template is stored. The **pwd** command shows the folder path. The path is where you save the template to in the following procedure.
98
96
@@ -136,7 +134,7 @@ A DevOps organization is needed before you can proceed to the next procedure. I
136
134
1. Sign in to [Azure DevOps](https://dev.azure.com).
1. Select **Create project**. If you don't have any projects, the create project page is opened automatically.
142
140
1. Enter the following values:
@@ -163,18 +161,18 @@ Create a service connection that is used to deploy projects to Azure.
163
161
164
162
## Create a pipeline
165
163
166
-
Until now, you have completed the following tasks. If you skip the previous sections because you are famliar with GitHub and DevOps, you must complete the tasks before you continue.
164
+
Until now, you have completed the following tasks. If you skip the previous sections because you are familiar with GitHub and DevOps, you must complete the tasks before you continue.
167
165
168
166
- Create a GitHub repository, and save [this template](https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/101-storage-account-create/azuredeploy.json) to the **CreateAzureStorage** folder in the repository.
169
167
- Create a DevOps project, and create an Azure Resource Manager service connection.
170
168
171
-
To create a pipline with a step to deploy a template:
169
+
To create a pipeline with a step to deploy a template:
172
170
173
171
1. Select **Pipelines** from the left menu.
174
172
1. Select **New pipeline**.
175
173
1. From the **Connect** tab, select **GitHub**. If asked, enter your GitHub credentials, and then follow the instructions. If you see the following screen, select **Only select repositories**, and verify your repository is in the list before you select **Approve & Install**.
176
174
177
-

175
+

178
176
179
177
1. From the **Select** tab, select your repository. The default name is **[YourAccountName]/[YourGitHubRepositoryName]**.
180
178
1. From the **Configure** tab, select **Starter pipeline**. It shows the **azure-pipelines.yml** pipeline file with two script steps.
@@ -195,7 +193,7 @@ To create a pipline with a step to deploy a template:
@@ -211,7 +209,7 @@ To create a pipline with a step to deploy a template:
211
209
1. Select **Save and run** again. A copy of the YAML file is saved into the connected repository. You can see the YAML file by browse to your repository.
212
210
1. Verify that the pipeline is executed successfully.
0 commit comments