diff --git a/.github/workflows/terraform.yaml b/.github/workflows/terraform.yaml index bbda918..4675cac 100644 --- a/.github/workflows/terraform.yaml +++ b/.github/workflows/terraform.yaml @@ -179,14 +179,13 @@ jobs: - name: "v4" continue-on-error: true run: | - vpc_id2=$(echo "{ "name": "John" }" | jq -r '.[] | select(.name == "John") | .name') - echo "$vpc_id2" + echo "{ "name": "John" }" | jq -r '.[] | select(.name == "John") | .name' + - name: "v5" continue-on-error: true run: | - vpc_id2=$(echo { "name": "John" } | jq -r '.[] | select(.name == "John") | .name') - echo "$vpc_id2" + echo { "name": "John" } | jq -r '.[] | select(.name == "John") | .name'