We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3358681 commit 790f7d8Copy full SHA for 790f7d8
.github/workflows/terraform.yml
@@ -35,8 +35,8 @@ jobs:
35
run: |
36
DESTROY_DEV="$(jq -r '.dev' ./infra/destroy_config.json)"
37
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"
+ echo "destroy_dev=$(echo $DESTROY_DEV)" >> $GITHUB_OUTPUT
+ echo "destroy_prod=$(echo $DESTROY_PROD)" >> $GITHUB_OUTPUT
40
41
- name: Terraform Init
42
0 commit comments