From 2be330356312ff8af4137bd615e7abe93b064162 Mon Sep 17 00:00:00 2001 From: tiennm99 Date: Thu, 11 Jun 2026 22:21:19 +0700 Subject: [PATCH] fix(deploy): include gold module in CI ModulesCSV override CI's --parameter-overrides replaces samconfig.toml values, so every push reverted the stack to the pre-gold module list. --- .github/workflows/deploy.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 8904389..aadd809 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -59,7 +59,8 @@ jobs: # CI needs in the deployed stack must be listed here explicitly. # Telegram user IDs are public (visible to anyone the bot DMs), so # they live in this committed workflow rather than a secret. - OVERRIDES="CronSharedSecret=$CRON_SECRET BotOwnerID=1064111334 AdminUserIDs=1064111334 ModulesCSV=util,misc,wordle,loldle,lolschedule,twentyq,trading,stats" + # Keep this module list in sync with samconfig.toml's ModulesCSV. + OVERRIDES="CronSharedSecret=$CRON_SECRET BotOwnerID=1064111334 AdminUserIDs=1064111334 ModulesCSV=util,misc,wordle,loldle,lolschedule,twentyq,trading,stats,gold" if [ -n "$ALERT_EMAIL" ]; then OVERRIDES="$OVERRIDES AlertEmail=$ALERT_EMAIL" fi