Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README.md with small changes #7

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ For all samples to set up GitHub workflows, see [Create your first workflow](htt

## Pre-requisites
* Create a new Web App in Azure Portal with runtime stack as .NETCore and OS as Linux/Windows
* Copy Publish Profile Settings of the app
* Copy Publish Profile Settings of the app. If you are using Azure CLI make sure to download the Publish Profile in XML format.

### Create an ASP.NET App Service in Azure

Expand All @@ -40,7 +40,7 @@ If you are new to Azure App Service, see:
* Paste the contents for the downloaded publish profile file into the secret's value field
* Now in the workflow file in your branch: `.github/workflows/workflow.yml` replace the secret for the input `publish-profile:` of the deploy Azure WebApp action

## test your workflow
## Test your workflow
* Commit a change in the app code.
* You should see a new GitHub Action initiated in **Actions** tab.
* At the end of the execution, navigate to the App URL to visualise the change introduced.
Expand All @@ -50,7 +50,7 @@ If you are new to Azure App Service, see:
* [Checkout](https://github.com/actions/checkout) Checks out your Git repository content into Github Actions agent.
* Environment setup using [Setup DotNet](https://github.com/actions/setup-dotnet) - Sets up a dotnet environment by optionally downloading and caching a version of dotnet by SDK version and adding to PATH .
* DotNet Build & Publish
* Deploy to App service using azure/webapps-deploy@v1 action which authenticates using [Azure Web App Publish Profile](https://github.com/projectkudu/kudu/wiki/Deployment-credentials#site-credentials-aka-publish-profile-credentials)
* Deploy to App service using azure/webapps-deploy@v2 action which authenticates using [Azure Web App Publish Profile](https://github.com/projectkudu/kudu/wiki/Deployment-credentials#site-credentials-aka-publish-profile-credentials)
which we configured using the secret set up at the repo level


Expand Down