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/app-service/deploy-github-actions.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -58,7 +58,7 @@ You could also use app-level credentials i.e. publish profile for deployment. Fo
58
58
4. Now in the workflow file in your branch: `.github/workflows/workflow.yml` replace the secret for the input `publish-profile` of the deploy Azure Web App action.
59
59
60
60
```yaml
61
-
- uses: azure/webapps-deploy@v1
61
+
- uses: azure/webapps-deploy@v2
62
62
with:
63
63
creds: ${{ secrets.azureWebAppPublishProfile }}
64
64
```
@@ -178,7 +178,7 @@ The following examples show the part of the workflow that builds the web app, in
178
178
```
179
179
## Deploy to App Service
180
180
181
-
To deploy your code to an App Service app, use the `azure/webapps-deploy@v1 ` action. This action has four parameters:
181
+
To deploy your code to an App Service app, use the `azure/webapps-deploy@v2` action. This action has four parameters:
0 commit comments