From f09734da00219b739795730ec7ece5176ba9f9d1 Mon Sep 17 00:00:00 2001 From: shpraka <46188819+shpraka@users.noreply.github.com> Date: Fri, 2 Sep 2022 15:41:59 +0530 Subject: [PATCH 1/2] Update pr_check_windows_container_pubprofile.yml --- .../pr_check_windows_container_pubprofile.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/pr_check_windows_container_pubprofile.yml b/.github/workflows/pr_check_windows_container_pubprofile.yml index 3b01a94db..e2cf91043 100644 --- a/.github/workflows/pr_check_windows_container_pubprofile.yml +++ b/.github/workflows/pr_check_windows_container_pubprofile.yml @@ -13,8 +13,8 @@ on: - 'releases/*' env: - AZURE_WEBAPP_NAME: windowscontainerwebapp # set this to your application's name - CONTAINER_REGISTRY: l2testscontainerregistry.azurecr.io # set secret with Container Registry URL, example : xyz.azurecr.io + AZURE_WEBAPP_NAME: wincontainerwebapp # set this to your application's name + CONTAINER_REGISTRY: webdeploytestscontainerregistry.azurecr.io # set secret with Container Registry URL, example : xyz.azurecr.io jobs: build-and-deploy: @@ -37,9 +37,9 @@ jobs: - uses: azure/docker-login@v1 with: - login-server: l2testscontainerregistry.azurecr.io - username: ${{ secrets.L2TEST_ACR_USERNAME }} - password: ${{ secrets.L2TEST_ACR_PASSWORD }} + login-server: webdeploytestscontainerregistry.azurecr.io + username: ${{ secrets.WEBDEPLOY_TEST_ACR_USERNAME }} + password: ${{ secrets.WEBDEPLOY_TEST_ACR_PASSWORD }} - run: | pwd @@ -56,7 +56,7 @@ jobs: [ { "name": "DOCKER_REGISTRY_SERVER_PASSWORD", - "value": "${{ secrets.L2TEST_ACR_PASSWORD }}", + "value": "${{ secrets.WEBDEPLOY_TEST_ACR_PASSWORD }}", "slotSetting": false }, { @@ -66,7 +66,7 @@ jobs: }, { "name": "DOCKER_REGISTRY_SERVER_USERNAME", - "value": "${{ secrets.L2TEST_ACR_USERNAME }}", + "value": "${{ secrets.WEBDEPLOY_TEST_ACR_USERNAME }}", "slotSetting": false } ] From efd4364c35b48c150088a7bdc771836d304c045f Mon Sep 17 00:00:00 2001 From: shpraka <46188819+shpraka@users.noreply.github.com> Date: Fri, 2 Sep 2022 16:12:06 +0530 Subject: [PATCH 2/2] Update pr_check_webapp_dotnet_windows.yml --- .github/workflows/pr_check_webapp_dotnet_windows.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pr_check_webapp_dotnet_windows.yml b/.github/workflows/pr_check_webapp_dotnet_windows.yml index 5706fff65..ec465a4bb 100644 --- a/.github/workflows/pr_check_webapp_dotnet_windows.yml +++ b/.github/workflows/pr_check_webapp_dotnet_windows.yml @@ -20,7 +20,7 @@ on: # # 2. Change these variables for your configuration: env: - AZURE_WEBAPP_NAME: dotnetwebapplima # set this to your application's name + AZURE_WEBAPP_NAME: dotnetwebappdeploy # set this to your application's name AZURE_WEBAPP_PACKAGE_PATH: '.' # set this to the path to your web app project, defaults to the repository root NUGET_VERSION: '5.3.1' # set this to the node version to use