Compare commits

...

2 Commits

Author SHA1 Message Date
4d6ac7d9dd Merge pull request 'fix: preserve terraform PATH in destroy plan retry' (#61) from stage into master
Some checks failed
Terraform Apply / Terraform Apply (push) Failing after 8m42s
Reviewed-on: #61
2026-02-28 23:05:24 +00:00
0a51dfc0e1 fix: preserve terraform PATH in destroy plan retry
All checks were successful
Terraform Plan / Terraform Plan (push) Successful in 19s
2026-02-28 23:04:12 +00:00

View File

@@ -93,7 +93,7 @@ jobs:
for attempt in 1 2; do
echo "Terraform destroy plan attempt $attempt/2"
if timeout 20m bash -lc "$TF_PLAN_CMD"; then
if timeout 20m sh -c "$TF_PLAN_CMD"; then
exit 0
fi
if [ "$attempt" -eq 1 ]; then