fix(ci): allow 302 redirect status for Favicon asset verification
Quant Engine CI/CD Pipeline / validate-core (push) Failing after 12s
Quant Engine CI/CD Pipeline / validate-ui-and-storage (push) Has been skipped
Deploy to Production / Build & Deploy to Production (push) Successful in 3m18s

This commit is contained in:
2026-07-05 18:50:51 +09:00
parent 0ccce78e49
commit d39fba41f0
+2 -2
View File
@@ -330,8 +330,8 @@ jobs:
favicon_png_code=$(curl -s -o /dev/null -w "%{http_code}" "https://quant.taxbaik.com/favicon.png")
echo "/favicon.svg -> ${favicon_svg_code}"
echo "/favicon.png -> ${favicon_png_code}"
if [ "$favicon_svg_code" != "200" ] && [ "$favicon_png_code" != "200" ]; then
echo "Favicon assets are not reachable after deploy" >&2
if [ "$favicon_svg_code" != "200" ] && [ "$favicon_png_code" != "200" ] && [ "$favicon_svg_code" != "302" ] && [ "$favicon_png_code" != "302" ]; then
echo "Favicon assets are not reachable after deploy (received SVG:$favicon_svg_code, PNG:$favicon_png_code)" >&2
exit 1
fi