From 0f2619b767b3a8e4ef72688bf14e65635a8a631f Mon Sep 17 00:00:00 2001 From: Tom Augspurger Date: Thu, 2 Mar 2023 11:51:47 -0600 Subject: [PATCH] [CI]: Fixed env mapping (#151) --- .github/workflows/cicd.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cicd.yml b/.github/workflows/cicd.yml index 0c3ff610..06cc6d75 100644 --- a/.github/workflows/cicd.yml +++ b/.github/workflows/cicd.yml @@ -108,5 +108,5 @@ jobs: env: IMAGE_TAG: ${{needs.build_and_publish.outputs.image_tag}} ENVIRONMENT: staging - AZURE_TENANT_ID: {{ secrets.AZURE_TENANT_ID }} - AZURE_SUBSCRIPTION_ID: {{ secrets.AZURE_SUBSCRIPTION_ID }} + AZURE_TENANT_ID: ${{ secrets.AZURE_TENANT_ID }} + AZURE_SUBSCRIPTION_ID: ${{ secrets.AZURE_SUBSCRIPTION_ID }}