Skip to content

Commit 86ee267

Browse files
committed
links
1 parent 518848e commit 86ee267

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

articles/app-service/deploy-best-practices.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ There are examples below for common automation frameworks.
6161

6262
### Use Azure DevOps
6363

64-
App Service has [built-in continuous delivery]() for containers through the Deployment Center. Navigate to your app in the [Azure portal]() and select **Deployment Center** under **Deployment**. Follow the instructions to select your repository and branch. This will configure a DevOps build and release pipeline to automatically build, tag, and deploy your container when new commits are pushed to your selected branch.
64+
App Service has [built-in continuous delivery](deploy-continuous-deployment.md) for containers through the Deployment Center. Navigate to your app in the [Azure portal](https://portal.azure.com/) and select **Deployment Center** under **Deployment**. Follow the instructions to select your repository and branch. This will configure a DevOps build and release pipeline to automatically build, tag, and deploy your container when new commits are pushed to your selected branch.
6565

6666
### Use GitHub Actions
6767

@@ -83,11 +83,11 @@ jobs:
8383
- uses: actions/checkout@master
8484

8585
-name: Authenticate using a Service Principal
86-
uses: azure/actions/login@master
86+
uses: azure/actions/login@v1
8787
with:
8888
creds: ${{ secrets.AZURE_SP }}
8989

90-
- uses: azure/container-actions/docker-login@master
90+
- uses: azure/container-actions/docker-login@v1
9191
with:
9292
username: ${{ secrets.DOCKER_USERNAME }}
9393
password: ${{ secrets.DOCKER_PASSWORD }}
@@ -98,7 +98,7 @@ jobs:
9898
docker push contoso/demo:${{ github.sha }}
9999
100100
- name: Update image tag on the Azure Web App
101-
uses: azure/appservice-actions/webapp-container@master
101+
uses: azure/webapps-container-deploy@v1
102102
with:
103103
app-name: '<your-webapp-name>'
104104
slot-name: '<your-slot-name>'

0 commit comments

Comments
 (0)