From 45444799a21d00b4ca3b4f6b62d20ca85b398028 Mon Sep 17 00:00:00 2001 From: hvalfangst <121831102+hvalfangst@users.noreply.github.com> Date: Wed, 25 Dec 2024 21:19:47 +0100 Subject: [PATCH] Incorporated OIDC for authenticating towards Azure in GH Action --- .github/workflows/deploy_to_azure.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deploy_to_azure.yml b/.github/workflows/deploy_to_azure.yml index 7ff1b36..ea7343d 100644 --- a/.github/workflows/deploy_to_azure.yml +++ b/.github/workflows/deploy_to_azure.yml @@ -35,7 +35,7 @@ jobs: run: cd hvalfangst_function && zip -r ../release.zip ./* - name: Upload artifact for deployment job - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v3 with: name: hvalfangst-function-app path: | @@ -50,7 +50,7 @@ jobs: url: ${{ steps.deploy-to-function.outputs.webapp-url }} steps: - name: Download artifact from build job - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v3 with: name: hvalfangst-function-app @@ -62,7 +62,7 @@ jobs: id: deploy-to-function with: app-name: 'hvalfangstlinuxfunctionapp' - slot-name: 'Production' + slot-name: 'Production' package: ${{ env.AZURE_FUNCTIONAPP_PACKAGE_PATH }} scm-do-build-during-deployment: true enable-oryx-build: true