From 13b0ef41c8f8796419516787ebd84fe9f2ffe502 Mon Sep 17 00:00:00 2001 From: rajson49-hue Date: Sat, 4 Oct 2025 15:13:44 +0200 Subject: [PATCH] correction of app name --- .github/workflows/pr-verify.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pr-verify.yml b/.github/workflows/pr-verify.yml index c31c1b9f..8f660402 100644 --- a/.github/workflows/pr-verify.yml +++ b/.github/workflows/pr-verify.yml @@ -2,7 +2,7 @@ name: PR Verify # These are the veriables which you could use in your workflows env: - AZURE_WEBAPP_NAME: app-dev-rajsonawala.azurewebsites.net # set this to the name of your Azure Web App + AZURE_WEBAPP_NAME: app-dev-rajsonawala # set this to the name of your Azure Web App AZURE_WEBAPP_PACKAGE_PATH: '.' # set this to the path to your web app project, defaults to the repository root DOTNET_VERSION: '8.0' # set this to the .NET Core version to use @@ -61,11 +61,11 @@ jobs: path: artifacts/ # Deploy to Azure Web apps - - name: 'Deploy to Azure App Services' + - name: 'Deploy to Azure App Service' uses: azure/webapps-deploy@v2 with: app-name: ${{ env.AZURE_WEBAPP_NAME }} # Replace with your app name - package: 'artifacts/' + package: artifacts/ \ No newline at end of file