Install tea pr index step.
Auto-PR Check/Creation and TF/OpenTofu Plan / Check and Create PR (push) Successful in 38s
Auto-PR Check/Creation and TF/OpenTofu Plan / Terraform/OpenTofu Plan (push) Failing after 22s

This commit is contained in:
2025-10-19 14:24:31 -04:00
parent ae01c30aef
commit a091d0b7e2
+4 -2
View File
@@ -78,8 +78,10 @@ jobs:
wget -q "${TEA_DL_URL}" wget -q "${TEA_DL_URL}"
wget -q "${TEA_DL_URL}.sha256" wget -q "${TEA_DL_URL}.sha256"
# Extract hash and manually verify file # Read only the hash (strip whitespace)
sha_value=$(cat "tea-${TEA_VERSION}-linux-amd64.sha256") sha_value=$(cat "tea-${TEA_VERSION}-linux-amd64.sha256" | tr -d '[:space:]')
# Verify using sha256sum
echo "${sha_value} tea-${TEA_VERSION}-linux-amd64" | sha256sum -c - echo "${sha_value} tea-${TEA_VERSION}-linux-amd64" | sha256sum -c -
mv "tea-${TEA_VERSION}-linux-amd64" /usr/bin/tea mv "tea-${TEA_VERSION}-linux-amd64" /usr/bin/tea