From c6da20a79fffd07f1551f960f1d8eba38dcff6ea Mon Sep 17 00:00:00 2001 From: github-7989 <81810371+github-7989@users.noreply.github.com> Date: Thu, 27 May 2021 11:21:34 +0530 Subject: [PATCH] Add or update the App Service deployment workflow configuration from Azure Portal. --- .github/workflows/master_wabapp01.yml | 56 +++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 .github/workflows/master_wabapp01.yml diff --git a/.github/workflows/master_wabapp01.yml b/.github/workflows/master_wabapp01.yml new file mode 100644 index 0000000..ea01405 --- /dev/null +++ b/.github/workflows/master_wabapp01.yml @@ -0,0 +1,56 @@ +# Docs for the Azure Web Apps Deploy action: https://github.com/Azure/webapps-deploy +# More GitHub Actions for Azure: https://github.com/Azure/actions + +name: Build and deploy ASP.Net Core app to Azure Web App - wabapp01 + +on: + push: + branches: + - master + workflow_dispatch: + +jobs: + build: + runs-on: windows-latest + + steps: + - uses: actions/checkout@v2 + + - name: Set up .NET Core + uses: actions/setup-dotnet@v1 + with: + dotnet-version: '5.0.x' + + - name: Build with dotnet + run: dotnet build --configuration Release + + - name: dotnet publish + run: dotnet publish -c Release -o ${{env.DOTNET_ROOT}}/myapp + + - name: Upload artifact for deployment job + uses: actions/upload-artifact@v2 + with: + name: .net-app + path: ${{env.DOTNET_ROOT}}/myapp + + deploy: + runs-on: windows-latest + needs: build + environment: + name: 'production' + url: ${{ steps.deploy-to-webapp.outputs.webapp-url }} + + steps: + - name: Download artifact from build job + uses: actions/download-artifact@v2 + with: + name: .net-app + + - name: Deploy to Azure Web App + id: deploy-to-webapp + uses: azure/webapps-deploy@v2 + with: + app-name: 'wabapp01' + slot-name: 'production' + publish-profile: ${{ secrets.AzureAppService_PublishProfile_b74b86914bbf4c46a8223d790869fadb }} + package: . \ No newline at end of file