From 646f9e39770b4be84c5a39ab419ccbf843161a3b Mon Sep 17 00:00:00 2001 From: Bella Luz Quintero Date: Wed, 10 Jul 2024 11:44:32 -0600 Subject: [PATCH] Changed function app name to match Terraform. Co-authored-by: saquino0827 Co-authored-by: Sylvie Co-authored-by: James Herr --- .github/workflows/functions-deploy.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/functions-deploy.yml b/.github/workflows/functions-deploy.yml index 65db4724..7e50601a 100644 --- a/.github/workflows/functions-deploy.yml +++ b/.github/workflows/functions-deploy.yml @@ -46,7 +46,8 @@ permissions: contents: read env: - AZURE_FUNCTIONAPP_NAME: 'testTimer' + # AZURE_FUNCTIONAPP_NAME has to match the azurerm_linux_function_app's name in functions.tf + AZURE_FUNCTIONAPP_NAME: 'polling-function-${{ inputs.ENVIRONMENT }}' AZURE_FUNCTIONAPP_PACKAGE_PATH: './azure_functions' NODE_VERSION: '20.x' @@ -64,7 +65,7 @@ jobs: uses: actions/checkout@v4 - name: Setup Node ${{ env.NODE_VERSION }} Environment - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: ${{ env.NODE_VERSION }}