fix(ci): drop concurrency from deploy workflows (auto-deploy like mokoai) #824

Merged
jmiller merged 1 commits from feature/deploy-no-concurrency into dev 2026-07-19 00:34:50 +00:00
3 changed files with 12 additions and 9 deletions
+4 -3
View File
@@ -30,9 +30,10 @@ on:
# Runs on the ref it is dispatched from.
workflow_dispatch:
concurrency:
group: deploy-dev
cancel-in-progress: true
# No `concurrency:` block: it triggers a MokoGIT Actions run-creation bug that
# silently drops deploys on rapid pushes (workflow_payload BLOB overflow, fixed
# by widening the column in #816). Matches MokoAI / Template-Go so the dev deploy
# auto-runs on push like mokoai. Canonical fix: Template-Go#22.
env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
+4 -3
View File
@@ -30,9 +30,10 @@ on:
# Runs on the ref it is dispatched from (use main).
workflow_dispatch:
concurrency:
group: deploy-prod
cancel-in-progress: false
# No `concurrency:` block: it triggers a MokoGIT Actions run-creation bug that
# silently drops deploys on rapid pushes (workflow_payload BLOB overflow, fixed
# by widening the column in #816). Matches MokoAI / Template-Go so the prod deploy
# auto-runs on push like mokoai. Canonical fix: Template-Go#22.
env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
+4 -3
View File
@@ -32,9 +32,10 @@ on:
# newer DB. Dispatch from `rc` once `rc` is current.
workflow_dispatch:
concurrency:
group: deploy-rc
cancel-in-progress: true
# No `concurrency:` block: it triggers a MokoGIT Actions run-creation bug that
# silently drops deploys on rapid pushes (workflow_payload BLOB overflow, fixed
# by widening the column in #816). Matches MokoAI / Template-Go so the rc deploy
# auto-runs on push like mokoai. Canonical fix: Template-Go#22.
env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true