fix(ci): release-doctor — report correct token name

This commit is contained in:
stainless-app[bot] 2025-06-26 18:42:51 +00:00
parent c8b1b1c869
commit 87e54a55bf

View file

@ -0,0 +1,25 @@
#!/usr/bin/env bash
errors=()
if [ -z "${GPG_SIGNING_KEY}" ]; then
errors+=("The GPG_SIGNING_KEY secret has not been set. Please set it in either this repository's secrets or your organization secrets")
fi
if [ -z "${GPG_SIGNING_PASSWORD}" ]; then
errors+=("The GPG_SIGNING_PASSWORD secret has not been set. Please set it in either this repository's secrets or your organization secrets")
fi
lenErrors=${#errors[@]}
if [[ lenErrors -gt 0 ]]; then
echo -e "Found the following errors in the release environment:\n"
for error in "${errors[@]}"; do
echo -e "- $error\n"
done
exit 1
fi
echo "The environment is ready to push releases!"