Skip to content

Commit

Permalink
fix: workflow's deploy job broken
Browse files Browse the repository at this point in the history
  • Loading branch information
artemious7 committed Oct 22, 2024
1 parent 25444cd commit 60a9476
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/provision-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ permissions:
id-token: write
contents: read

# The ARM_* environment variables are used by the terraform azure provider to setup OIDC authentication.
env:
# The ARM_* environment variables are used by the Terraform AzureRM provider for authentication
ARM_CLIENT_ID: "${{ secrets.AZURE_CLIENT_ID }}"
ARM_CLIENT_SECRET: "${{ secrets.AZURE_CLIENT_SECRET }}"
ARM_SUBSCRIPTION_ID: "${{ secrets.AZURE_SUBSCRIPTION_ID }}"
Expand All @@ -32,7 +32,7 @@ jobs:
run:
working-directory: infra
env:
#this is needed since we are running terraform with read-only permissions
# this is needed since we are running Terraform with read-only permissions
ARM_SKIP_PROVIDER_REGISTRATION: true
TF_IN_AUTOMATION: 1
outputs:
Expand Down Expand Up @@ -152,7 +152,7 @@ jobs:
runs-on: ubuntu-latest
needs: [provision, build]
env:
FUNCTIONS_APP_NAME: ${{ needs.provision-infrastructure.outputs.functionAppName }}
FUNCTIONS_APP_NAME: ${{ needs.provision.outputs.functionAppName }}

steps:
- name: Download
Expand Down

0 comments on commit 60a9476

Please sign in to comment.