Skip to content

Commit

Permalink
Fix working directory
Browse files Browse the repository at this point in the history
  • Loading branch information
blueelvis committed Nov 30, 2024
1 parent 6b724ee commit ae9f629
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -13,7 +13,6 @@ permissions:
jobs:
deploy:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

@@ -32,7 +31,7 @@ jobs:
# Deploy backend infrastructure
- name: Terraform Init Backend
run: terraform init
working-directory: ./terraform/backend
working-directory: ./terraform
env:
ARM_USE_OIDC: true
ARM_CLIENT_ID: ${{ secrets.AZURE_CLIENT_ID }}
@@ -41,7 +40,7 @@ jobs:

- name: Terraform Apply Backend
run: terraform apply -auto-approve
working-directory: ./terraform/backend
working-directory: ./terraform
env:
ARM_USE_OIDC: true
ARM_CLIENT_ID: ${{ secrets.AZURE_CLIENT_ID }}

0 comments on commit ae9f629

Please sign in to comment.