Skip to content

Commit

Permalink
chore(): remove the working dir
Browse files Browse the repository at this point in the history
  • Loading branch information
Arielpetit committed Nov 22, 2024
1 parent 689b136 commit 57558a1
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ on:
jobs:
terraform:
runs-on: ubuntu-latest
run tasks: cd terraform

steps:
- name: Checkout Code
Expand All @@ -27,14 +26,14 @@ jobs:
aws-region: eu-central-1

- name: Terraform Init
run: terraform init
run: cd terraform && terraform init

- name: Terraform Validate
run: terraform validate
run: cd terraform && terraform validate

- name: Terraform Plan
run: terraform plan -out=plan.tfplan
run: cd terraform && terraform plan -out=plan.tfplan

- name: Terraform Apply
run: terraform apply -auto-approve plan.tfplan
run: cd terraform && terraform apply -auto-approve plan.tfplan

0 comments on commit 57558a1

Please sign in to comment.