Skip to content

Commit 8e42218

Browse files
Stages within a single job
1 parent b5eebcd commit 8e42218

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,13 @@ jobs:
3838
find . -name "sandbox.tfplan"
3939
echo "found!"
4040
tfplan_location=$(find . -name "sandbox.tfplan")
41-
echo "TERRAFORM_PLAN=$(cat $tfplan_location)" >> "$GITHUB_OUTPUT"
41+
tfplan_contents=$(cat $tfplan_location)
42+
echo "TERRAFORM_PLAN=$tfplan_contents" >> $GITHUB_OUTPUT
4243
with:
4344
tf_version: '1.5.5'
4445
tg_version: '0.54.11'
4546
tg_dir: 'platform/sandbox/us-east-2/000'
46-
tg_command: 'plan -out sandbox.tfplan'
47+
tg_command: 'plan -out=sandbox.tfplan -input=false'
4748

4849
- name: Deploy
4950
uses: gruntwork-io/terragrunt-action@v2

0 commit comments

Comments
 (0)