Skip to content

Commit 9b08f83

Browse files
committed
fix
1 parent 9c0976b commit 9b08f83

1 file changed

Lines changed: 6 additions & 3 deletions

File tree

.github/workflows/deploy.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,17 +27,20 @@ jobs:
2727
- name: Update Terraform State and Providers
2828
uses: gruntwork-io/terragrunt-action@v3
2929
with:
30-
tg_dir: $TG_WORKING_DIR
30+
tg_dir: ${{ github.workspace }}/terragrunt/live/website
3131
tg_command: init --upgrade
3232

3333
- name: Terragrunt Plan
3434
uses: gruntwork-io/terragrunt-action@v3
3535
with:
36-
tg_dir: $TG_WORKING_DIR
36+
tg_dir: ${{ github.workspace }}/terragrunt/live/website
3737
tg_command: plan
3838

3939
- name: Terragrunt Apply
40-
run: terragrunt apply -auto-approve --chdir $TG_WORKING_DIR
40+
uses: gruntwork-io/terragrunt-action@v3
41+
with:
42+
tg_dir: ${{ github.workspace }}/terragrunt/live/website
43+
tg_command: apply -auto-approve
4144

4245
- name: Terragrunt Output
4346
id: terraform

0 commit comments

Comments
 (0)