diff --git a/.github/workflows/run-validation-oidc.yml b/.github/workflows/run-validation-oidc.yml index b5d0e98..cb4151a 100644 --- a/.github/workflows/run-validation-oidc.yml +++ b/.github/workflows/run-validation-oidc.yml @@ -110,7 +110,7 @@ jobs: - name: Delete created Azure Container App if: ${{ always() }} shell: bash - run: az containerapp delete -n ${{ env.TEST_CONTAINER_APP_NAME }} -g ${{ vars.TEST_RESOURCE_GROUP_NAME }} -y + run: az containerapp delete -n ${{ env.TEST_CONTAINER_APP_NAME }} -g ${{ vars.TEST_RESOURCE_GROUP_NO_ACR_NAME }} -y create-using-found-dockerfile: @@ -600,14 +600,14 @@ jobs: uses: ./ with: appSourcePath: '${{ github.workspace }}/oryx/tests/SampleApps/DotNetCore/NetCore6PreviewWebApp' - containerAppName: ${{ env.TEST_EXISTING_CONTAINER_APP }} + containerAppName: ${{ vars.TEST_EXISTING_CONTAINER_APP }} resourceGroup: ${{ vars.TEST_RESOURCE_GROUP_NO_ACR_NAME }} disableTelemetry: ${{ vars.TEST_DISABLE_TELEMETRY }} - name: Update Container App with existing image if: ${{ always() }} shell: bash - run: az containerapp update -n ${{ env.TEST_EXISTING_CONTAINER_APP }} -g ${{ vars.TEST_RESOURCE_GROUP_NAME }} -i mcr.microsoft.com/azuredocs/containerapps-helloworld:latest + run: az containerapp update -n ${{ vars.TEST_EXISTING_CONTAINER_APP }} -g ${{ vars.TEST_RESOURCE_GROUP_NO_ACR_NAME }} -i mcr.microsoft.com/azuredocs/containerapps-helloworld:latest update-using-image: diff --git a/.github/workflows/run-validation.yml b/.github/workflows/run-validation.yml index 350ff7e..43e2a91 100644 --- a/.github/workflows/run-validation.yml +++ b/.github/workflows/run-validation.yml @@ -102,7 +102,7 @@ jobs: - name: Delete created Azure Container App if: ${{ always() }} shell: bash - run: az containerapp delete -n ${{ env.TEST_CONTAINER_APP_NAME }} -g ${{ vars.TEST_RESOURCE_GROUP_NAME }} -y + run: az containerapp delete -n ${{ env.TEST_CONTAINER_APP_NAME }} -g ${{ vars.TEST_RESOURCE_GROUP_NO_ACR_NAME }} -y create-using-found-dockerfile: @@ -560,7 +560,7 @@ jobs: - name: Update Container App with existing image if: ${{ always() }} shell: bash - run: az containerapp update -n ${{ env.TEST_CONTAINER_APP_NAME }} -g ${{ vars.TEST_RESOURCE_GROUP_NAME }} -i mcr.microsoft.com/azuredocs/containerapps-helloworld:latest + run: az containerapp update -n ${{ env.TEST_CONTAINER_APP_NAME }} -g ${{ vars.TEST_RESOURCE_GROUP_NO_ACR_NAME }} -i mcr.microsoft.com/azuredocs/containerapps-helloworld:latest update-using-image: