File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed
.github/actions/terragrunt_apply Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change 77 terragrunt_download_directory :
88 required : true
99 description : " Terragrunt download directory"
10-
10+ working_directory :
11+ required : false
12+ default : .
13+ description : " Location where to execute terragrunt apply command"
1114
1215runs :
1316 using : composite
@@ -16,11 +19,13 @@ runs:
1619 run : |
1720 rm -r ${{ inputs.terragrunt_download_directory }}/* --force
1821 mkdir --parents ${{ inputs.terragrunt_download_directory }}
22+ working-directory : ${{ inputs.working_directory }}
1923 shell : bash
2024 - name : Terragrunt Apply
2125 run : |
2226 terragrunt run-all apply \
2327 --terragrunt-non-interactive
28+ working-directory : ${{ inputs.working_directory }}
2429 shell : bash
2530 - name : Notify about failures
2631 if : ${{ failure() }}
You can’t perform that action at this time.
0 commit comments