Skip to content

Commit

Permalink
remove underscore
Browse files Browse the repository at this point in the history
  • Loading branch information
dev-dull committed Oct 4, 2024
1 parent 1862fa6 commit fbf48e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/docker-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
fi
- name: Validate terraform state changed
run: |
CURRENT_NULL_RESOURCE_ID=$(echo '${{env.TF_STATE}}' | jq -r '.resources[] | select(.type == "null_resource") | .instances[].attributes.id')
CURRENT_NULL_RESOURCE_ID=$(echo '${{env.TFSTATE}}' | jq -r '.resources[] | select(.type == "null_resource") | .instances[].attributes.id')
terraform apply --auto-approve
NEW_NULL_RESOURCE_ID=$(curl -sS http://localhost:2442/?env=InT | jq -r '.resources[] | select(.type == "null_resource") | .instances[].attributes.id')
[ "${CURRENT_NULL_RESOURCE_ID}" -ne "${NEW_NULL_RESOURCE_ID}" ]
Expand Down

0 comments on commit fbf48e0

Please sign in to comment.