summaryrefslogtreecommitdiffhomepage
path: root/infra
diff options
context:
space:
mode:
authorFrank <[email protected]>2025-08-21 18:02:32 +0800
committerFrank <[email protected]>2025-08-21 18:02:32 +0800
commit04dcd871703b1071c42ccdec23c2b5a3554e8b05 (patch)
tree31dc5d6b8281d70238debd974bf7e467033fadf7 /infra
parentc31fd9ed7990cffe966d0283e30001f6b9b0ab46 (diff)
downloadopencode-04dcd871703b1071c42ccdec23c2b5a3554e8b05.tar.gz
opencode-04dcd871703b1071c42ccdec23c2b5a3554e8b05.zip
fix do migration
Diffstat (limited to 'infra')
-rw-r--r--infra/app.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/infra/app.ts b/infra/app.ts
index 008c1245d..e1e7b26c6 100644
--- a/infra/app.ts
+++ b/infra/app.ts
@@ -25,8 +25,8 @@ export const api = new sst.cloudflare.Worker("Api", {
])
args.migrations = {
// Note: when releasing the next tag, make sure all stages use tag v2
- oldTag: $app.stage === "production" ? "" : "v1",
- newTag: $app.stage === "production" ? "" : "v1",
+ oldTag: $app.stage === "production" || $app.stage === "thdxr" ? "" : "v1",
+ newTag: $app.stage === "production" || $app.stage === "thdxr" ? "" : "v1",
//newSqliteClasses: ["SyncServer"],
}
},