Skip to content

Commit d2e56ee

Browse files
authored
🚀 Release: beta → master (#88)
* fix(docker): align HEALTHCHECK timing with liveness; robust healthcheck.js; deploy health debug Made-with: Cursor * fix: ESM healthcheck + CI exec validation Made-with: Cursor * fix(deploy): guard GITHUB_STEP_SUMMARY for set -u on VPS Made-with: Cursor * fix(ci): infra guard regex + exclude verify-stabilization.sh Made-with: Cursor
1 parent 2d69e8f commit d2e56ee

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

‎.github/workflows/deploy.yml‎

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -901,8 +901,9 @@ jobs:
901901
# Uses the same pattern as verify-stabilization.sh: only relative paths
902902
# (./infra/ or ../infra/) are forbidden. Absolute /opt/infra is allowed.
903903
# Scope: scripts/ and src/ only (not workflows where guard steps live).
904-
if grep -rE "\./infra/|\.\.\./infra/" scripts/ src/ \
905-
--binary-files=without-match --exclude-dir=node_modules 2>/dev/null \
904+
if grep -rE "\./infra/|\.\./infra/" scripts/ src/ \
905+
--binary-files=without-match --exclude-dir=node_modules \
906+
--exclude=verify-stabilization.sh 2>/dev/null \
906907
| grep -Ev '^[^:]+:\s*(#|//)'; then
907908
echo "::error::Local repo-relative infra coupling (./infra/ or ../infra/) detected in scripts/ or src/"
908909
exit 1

0 commit comments

Comments
 (0)