Skip to content

Commit 790f7d8

Browse files
committed
fix: change output for destroy step
1 parent 3358681 commit 790f7d8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/terraform.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ jobs:
3535
run: |
3636
DESTROY_DEV="$(jq -r '.dev' ./infra/destroy_config.json)"
3737
DESTROY_PROD="$(jq -r '.prod' ./infra/destroy_config.json)"
38-
echo "::set-output name=destroy_dev::$DESTROY_DEV"
39-
echo "::set-output name=destroy_prod::$DESTROY_PROD"
38+
echo "destroy_dev=$(echo $DESTROY_DEV)" >> $GITHUB_OUTPUT
39+
echo "destroy_prod=$(echo $DESTROY_PROD)" >> $GITHUB_OUTPUT
4040
4141
- name: Terraform Init
4242
run: |

0 commit comments

Comments
 (0)