ci: fix
This commit is contained in:
+5
-3
@@ -4,7 +4,9 @@ export default $config({
|
|||||||
app(input) {
|
app(input) {
|
||||||
// Dev owns the shared AWS lake/stats infra for all non-production stages.
|
// Dev owns the shared AWS lake/stats infra for all non-production stages.
|
||||||
const awsStage = input.stage === "production" ? "production" : "dev"
|
const awsStage = input.stage === "production" ? "production" : "dev"
|
||||||
const deployAws = input.stage === awsStage
|
// TODO temporarily disable AWS infra deployment
|
||||||
|
const deployAws = false
|
||||||
|
//const deployAws = input.stage === awsStage
|
||||||
return {
|
return {
|
||||||
name: "opencode",
|
name: "opencode",
|
||||||
removal: input?.stage === "production" ? "retain" : "remove",
|
removal: input?.stage === "production" ? "retain" : "remove",
|
||||||
@@ -38,8 +40,8 @@ export default $config({
|
|||||||
const stage = await import("./infra/stage.js")
|
const stage = await import("./infra/stage.js")
|
||||||
await import("./infra/app.js")
|
await import("./infra/app.js")
|
||||||
if (stage.deployAws) {
|
if (stage.deployAws) {
|
||||||
await import("./infra/lake.js")
|
//await import("./infra/lake.js")
|
||||||
await import("./infra/stats.js")
|
//await import("./infra/stats.js")
|
||||||
}
|
}
|
||||||
const { stat } = await import("./infra/console.js")
|
const { stat } = await import("./infra/console.js")
|
||||||
await import("./infra/enterprise.js")
|
await import("./infra/enterprise.js")
|
||||||
|
|||||||
Reference in New Issue
Block a user