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/container-apps/github-actions.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
---
2
2
title: Publish revisions with GitHub Actions in Azure Container Apps
3
-
description: Learn to automatically create new revisions in Azure Container Apps using a GitHub Actions workflow
3
+
description: Learn to automatically create new revisions in Azure Container Apps using a GitHub Actions workflow.
4
4
services: container-apps
5
5
author: craigshoemaker
6
6
ms.service: container-apps
@@ -102,17 +102,17 @@ You take the following steps to configure a GitHub Actions workflow to deploy to
102
102
103
103
### Prerequisites
104
104
105
-
| Requirement | Instructions |
105
+
| Requirement | Instructions |
106
106
|--|--|
107
107
| Azure account | If you don't have one, [create an account for free](https://azure.microsoft.com/free/?WT.mc_id=A261C142F). You need the *Contributor* or *Owner* permission on the Azure subscription to proceed. Refer to [Assign Azure roles using the Azure portal](../role-based-access-control/role-assignments-portal.yml?tabs=current) for details. |
108
108
| GitHub Account | Sign up for [free](https://github.com/join). |
109
109
| Azure CLI | Install the [Azure CLI](/cli/azure/install-azure-cli).|
110
110
111
111
### Create a GitHub repository and clone source code
112
112
113
-
Before creating a workflow, the source code for your app must be in a GitHub repository.
113
+
Before you create the workflow, the source code for your app must be in a GitHub repository.
114
114
115
-
1. Log in to Azure with the Azure CLI.
115
+
1. Sign in to Azure with the Azure CLI.
116
116
117
117
```azurecli-interactive
118
118
az login
@@ -124,7 +124,7 @@ Before creating a workflow, the source code for your app must be in a GitHub rep
124
124
az extension add --name containerapp --upgrade
125
125
```
126
126
127
-
1. If you do not have your own GitHub repository, create one from a sample.
127
+
1. If you don't have your own GitHub repository, create one from a sample.
128
128
1. Navigate to the following location to create a new repository:
@@ -137,7 +137,7 @@ Before creating a workflow, the source code for your app must be in a GitHub rep
137
137
138
138
### Create a container app with managed identity enabled
139
139
140
-
Create your container app using the `az containerapp up` command in the following steps. This command will create Azure resources, build the container image, store the image in a registry, and deploy to a container app.
140
+
Create your container app using the `az containerapp up` command in the following steps. This command creates Azure resources, builds the container image, stores the image in a registry, and deploys to a container app.
141
141
142
142
After you create your app, you can add a managed identity to the app and assign the identity the `AcrPull` role to allow the identity to pull images from the registry.
0 commit comments