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: java/microprofile/cicd-microprofile.md
+6-6
Original file line number
Diff line number
Diff line change
@@ -30,16 +30,16 @@ You start the Azure Pipelines containerize process by building a Docker image an
30
30
31
31
## Prerequisites
32
32
1. Copy and save the clone URL from [GitHub](https://github.com/Azure-Samples/microprofile-hello-azure).
33
-
1. Register or log into your [Azure DevOps](https://dev.azure.com)account and create a new [project](/vsts/organizations/projects/create-project).
33
+
1. Register or log into your [Azure DevOps](https://dev.azure.com)organization and create a new [project](/vsts/organizations/projects/create-project).
34
34
1. From your project page, select **Repos** in the left navigation, select **Import**, and use the Git clone URL you saved to **Import a Git repository**.
35
35
1. In the [Azure portal](https://portal.azure.com), create an [Azure Container Registry](https://azure.microsoft.com/services/container-registry).
36
36
1. In the Azure portal, create an Azure Web App for Containers. Select **Linux** for the **OS**, and for **Configure container**, select **Quickstart** as the **Image source**.
37
37
38
38
## Create a build pipeline
39
39
40
-
The continuous integration build pipeline in Azure Pipelines automatically executes all build tasks each time there's a commit in in the Java EE source app. In this example, Azure Pipelines uses Maven to build the Java MicroProfile project.
40
+
The continuous integration build pipeline in Azure Pipelines automatically executes all build tasks each time there's a commit in the Java EE source app. In this example, Azure Pipelines uses Maven to build the Java MicroProfile project.
41
41
42
-
1. From your Azure Repos Git repository, select **Azure Pipelines** > **Builds** in the left navigation.
42
+
1. From your Azure Repos Git repository, select **Pipelines** > **Builds** in the left navigation.
@@ -96,7 +96,7 @@ Azure Pipelines uses a Dockerfile with a base image from Payara Micro to create
96
96
97
97
Azure Pipelines pushes the Docker image to your Azure Container Registry, and uses it to run the MicroProfile API app as a containerized Java web app.
98
98
99
-
1. Since you are using Docker in Azure Pipelines, create a new Docker template by repeating the steps under [Create a Docker build image](#create-a-docker-build-image). This time, select **push** in the **Command** dropdown.
99
+
1. Since you're using Docker in Azure Pipelines, create a new Docker template by repeating the steps under [Create a Docker build image](#create-a-docker-build-image). This time, select **push** in the **Command** dropdown.
100
100
101
101
1. Select the dropdown next to **Save & queue**, and select **Save & queue**.
102
102
@@ -110,7 +110,7 @@ Azure Pipelines pushes the Docker image to your Azure Container Registry, and us
110
110
111
111
An Azure Pipelines continuous release pipeline automatically triggers deployment to a target environment like Azure as soon as a build succeeds. You can create release pipelines for environments like dev, test, staging, or production.
112
112
113
-
1. On your Azure DevOps project page, select **Azure Pipelines** > **Releases** in the left navigation.
113
+
1. On your Azure DevOps project page, select **Pipelines** > **Releases** in the left navigation.
114
114
115
115
1. Select **New Pipeline**.
116
116
@@ -193,7 +193,7 @@ To enable continuous deployment:
193
193
194
194
## Deploy the Java app
195
195
196
-
Now that you enabled CI/CD, modifying the source code creates and runs builds and releases automatically. To create and run a new release manually.
196
+
Now that you enabled CI/CD, modifying the source code creates and runs builds and releases automatically. You can also create and run releases manually.
197
197
198
198
1. Select **Create release** at the upper right on the pipeline page.
0 commit comments