You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
echo "::error::❌ No valid distribution certificate found. Automated renewal of certificates was skipped because the repository variable ENABLE_NUKE_CERTS is not set to 'true'."
83
84
exit 1
84
85
fi
85
-
# Check if vars.FORCE_NUKE_CERTS is not set to true
86
-
if [ vars.FORCE_NUKE_CERTS = "true" ]; then
86
+
# Check if FORCE_NUKE_CERTS is set to true
87
+
if [ "$FORCE_NUKE_CERTS" = "true" ]; then
87
88
echo "::warning::‼️ Nuking of certificates was forced because the repository variable FORCE_NUKE_CERTS is set to 'true'."
88
89
fi
89
90
# Nuke Certs if needed, and if the repository variable ENABLE_NUKE_CERTS is set to 'true', or if FORCE_NUKE_CERTS is set to 'true', which will always force certs to be nuked
0 commit comments