From debb11bf4e891e6ad933276d38c34490ce5597ec Mon Sep 17 00:00:00 2001 From: Eduard Keilholz Date: Fri, 27 Sep 2024 10:13:29 +0200 Subject: [PATCH] Bumped integration versions --- .github/workflows/main.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 2dedc2a..a82925c 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -56,16 +56,16 @@ jobs: name: bicep-templates path: ./infrastructure - name: Az CLI login - uses: azure/login@v1 + uses: azure/login@v2 with: client-id: ${{ secrets.WAM_TST_CLIENT_ID }} tenant-id: ${{ secrets.WAM_TST_TENANT_ID }} subscription-id: ${{ secrets.WAM_TST_SUBSCRIPTION_ID }} - name: Deploy Infrastructure id: arm - uses: Azure/cli@v1 + uses: Azure/cli@v2 with: - inlineScript: az deployment sub create --name wam-integration-northeur --location northeurope --template-file ./infrastructure/main.json --parameters ./infrastructure/test.main.json + inlineScript: az deployment sub create --name test-wam-integration-northeur --location northeurope --template-file ./infrastructure/main.json --parameters ./infrastructure/test.main.json production-deployment: if: github.ref == 'refs/heads/main' @@ -78,13 +78,13 @@ jobs: name: bicep-templates path: ./infrastructure - name: Az CLI login - uses: azure/login@v1 + uses: azure/login@v2 with: client-id: ${{ secrets.WAM_PRD_CLIENT_ID }} tenant-id: ${{ secrets.WAM_PRD_TENANT_ID }} subscription-id: ${{ secrets.WAM_PRD_SUBSCRIPTION_ID }} - name: Deploy Infrastructure id: arm - uses: Azure/cli@v1 + uses: Azure/cli@v2 with: - inlineScript: az deployment sub create --name wam-integration-northeur --location northeurope --template-file ./infrastructure/main.json --parameters ./infrastructure/prod.main.json + inlineScript: az deployment sub create --name prod-wam-integration-northeur --location northeurope --template-file ./infrastructure/main.json --parameters ./infrastructure/prod.main.json