Skip to content

Commit ae9f629

Browse files
committed
Fix working directory
1 parent 6b724ee commit ae9f629

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.github/workflows/deploy.yml

+2-3
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ permissions:
1313
jobs:
1414
deploy:
1515
runs-on: ubuntu-latest
16-
1716
steps:
1817
- uses: actions/checkout@v4
1918

@@ -32,7 +31,7 @@ jobs:
3231
# Deploy backend infrastructure
3332
- name: Terraform Init Backend
3433
run: terraform init
35-
working-directory: ./terraform/backend
34+
working-directory: ./terraform
3635
env:
3736
ARM_USE_OIDC: true
3837
ARM_CLIENT_ID: ${{ secrets.AZURE_CLIENT_ID }}
@@ -41,7 +40,7 @@ jobs:
4140

4241
- name: Terraform Apply Backend
4342
run: terraform apply -auto-approve
44-
working-directory: ./terraform/backend
43+
working-directory: ./terraform
4544
env:
4645
ARM_USE_OIDC: true
4746
ARM_CLIENT_ID: ${{ secrets.AZURE_CLIENT_ID }}

0 commit comments

Comments
 (0)