Skip to content

Commit

Permalink
Incorporated OIDC for authenticating towards Azure in GH Action
Browse files Browse the repository at this point in the history
  • Loading branch information
hvalfangst committed Dec 25, 2024
1 parent 457da40 commit 4544479
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/deploy_to_azure.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand All @@ -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

Expand All @@ -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
Expand Down

0 comments on commit 4544479

Please sign in to comment.