Skip to content

Commit

Permalink
Fix CD pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
filipopo committed Dec 14, 2024
1 parent c8207fc commit 0b4d5d3
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/cd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,16 +29,19 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Set up Terraform
uses: hashicorp/setup-terraform@v3

- name: Set up CDK for Terraform
run: npm install -g cdktf-cli
run: |
pip install pipenv
npm install -g cdktf-cli
pipenv install
- name: cdktf synth
run: cdktf synth
working-directory: cdktf

- name: Set up Terraform
uses: hashicorp/setup-terraform@v3

- name: Make Terraform plan
run: |
terraform init
Expand Down

0 comments on commit 0b4d5d3

Please sign in to comment.