From f30db4306e31358681d01e4bd73beb07033ad26a Mon Sep 17 00:00:00 2001 From: Zakaria Mansouri Date: Thu, 5 Sep 2024 19:12:26 +0200 Subject: [PATCH] Add db folder to oracle-cloud build --- api/oracle-cloud/deploy.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/oracle-cloud/deploy.ts b/api/oracle-cloud/deploy.ts index 271c8f602..cf1353a12 100644 --- a/api/oracle-cloud/deploy.ts +++ b/api/oracle-cloud/deploy.ts @@ -10,7 +10,7 @@ const stdout = execSync( "lerna list --include-dependencies --json --all --loglevel silent --scope @dzcode.io/api", ); const dependencies = JSON.parse(stdout.toString()) as Array<{ name: string; location: string }>; -const subPaths = ["dist", "package.json", "models"]; +const subPaths = ["dist", "package.json", "models", "db"]; const workspaceRoot = join(__dirname, "../.."); const fromToRecords = dependencies .map<{ from: string; to: string }>(({ location }) => ({