-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Expand file tree
/
Copy pathdeploy.ts
More file actions
758 lines (650 loc) · 23.7 KB
/
deploy.ts
File metadata and controls
758 lines (650 loc) · 23.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
import { intro, log, outro } from "@clack/prompts";
import { getBranch, prepareDeploymentError, tryCatch } from "@trigger.dev/core/v3";
import { InitializeDeploymentResponseBody } from "@trigger.dev/core/v3/schemas";
import { Command, Option as CommandOption } from "commander";
import { resolve } from "node:path";
import { isCI } from "std-env";
import { x } from "tinyexec";
import { z } from "zod";
import { CliApiClient } from "../apiClient.js";
import { buildWorker } from "../build/buildWorker.js";
import { resolveAlwaysExternal } from "../build/externals.js";
import {
CommonCommandOptions,
commonOptions,
handleTelemetry,
SkipLoggingError,
wrapCommandAction,
} from "../cli/common.js";
import { loadConfig } from "../config.js";
import { buildImage } from "../deploy/buildImage.js";
import {
checkLogsForErrors,
checkLogsForWarnings,
printErrors,
printWarnings,
saveLogs,
} from "../deploy/logs.js";
import { chalkError, cliLink, isLinksSupported, prettyError } from "../utilities/cliOutput.js";
import { loadDotEnvVars } from "../utilities/dotEnv.js";
import { isDirectory } from "../utilities/fileSystem.js";
import { setGithubActionsOutputAndEnvVars } from "../utilities/githubActions.js";
import { createGitMeta } from "../utilities/gitMeta.js";
import { printStandloneInitialBanner } from "../utilities/initialBanner.js";
import { resolveLocalEnvVars } from "../utilities/localEnvVars.js";
import { logger } from "../utilities/logger.js";
import { getProjectClient, upsertBranch } from "../utilities/session.js";
import { getTmpDir } from "../utilities/tempDirectories.js";
import { spinner } from "../utilities/windows.js";
import { login } from "./login.js";
import { archivePreviewBranch } from "./preview.js";
import { updateTriggerPackages } from "./update.js";
const DeployCommandOptions = CommonCommandOptions.extend({
dryRun: z.boolean().default(false),
skipSyncEnvVars: z.boolean().default(false),
env: z.enum(["prod", "staging", "preview"]),
branch: z.string().optional(),
loadImage: z.boolean().default(false),
buildPlatform: z.enum(["linux/amd64", "linux/arm64"]).default("linux/amd64"),
namespace: z.string().optional(),
selfHosted: z.boolean().default(false),
registry: z.string().optional(),
push: z.boolean().default(false),
config: z.string().optional(),
projectRef: z.string().optional(),
saveLogs: z.boolean().default(false),
skipUpdateCheck: z.boolean().default(false),
skipPromotion: z.boolean().default(false),
noCache: z.boolean().default(false),
envFile: z.string().optional(),
network: z.enum(["default", "none", "host"]).optional(),
});
type DeployCommandOptions = z.infer<typeof DeployCommandOptions>;
type Deployment = InitializeDeploymentResponseBody;
export function configureDeployCommand(program: Command) {
return commonOptions(
program
.command("deploy")
.description("Deploy your Trigger.dev v3 project to the cloud.")
.argument("[path]", "The path to the project", ".")
.option(
"-e, --env <env>",
"Deploy to a specific environment (currently only prod and staging are supported)",
"prod"
)
.option(
"-b, --branch <branch>",
"The preview branch to deploy to when passing --env preview. If not provided, we'll detect your git branch."
)
.option("--skip-update-check", "Skip checking for @trigger.dev package updates")
.option("-c, --config <config file>", "The name of the config file, found at [path]")
.option(
"-p, --project-ref <project ref>",
"The project ref. Required if there is no config file. This will override the project specified in the config file."
)
.option(
"--dry-run",
"Do a dry run of the deployment. This will not actually deploy the project, but will show you what would be deployed."
)
.option(
"--skip-sync-env-vars",
"Skip syncing environment variables when using the syncEnvVars extension."
)
.option(
"--env-file <env file>",
"Path to the .env file to load into the CLI process. Defaults to .env in the project directory."
)
.option(
"--skip-promotion",
"Skip promoting the deployment to the current deployment for the environment."
)
)
.addOption(
new CommandOption(
"--self-hosted",
"Build and load the image using your local Docker. Use the --registry option to specify the registry to push the image to when using --self-hosted, or just use --push to push to the default registry."
).hideHelp()
)
.addOption(
new CommandOption(
"--no-cache",
"Do not use the cache when building the image. This will slow down the build process but can be useful if you are experiencing issues with the cache."
).hideHelp()
)
.addOption(
new CommandOption(
"--push",
"When using the --self-hosted flag, push the image to the default registry. (defaults to false when not using --registry)"
).hideHelp()
)
.addOption(
new CommandOption(
"--registry <registry>",
"The registry to push the image to when using --self-hosted"
).hideHelp()
)
.addOption(
new CommandOption(
"--tag <tag>",
"(Coming soon) Specify the tag to use when pushing the image to the registry"
).hideHelp()
)
.addOption(
new CommandOption(
"--namespace <namespace>",
"Specify the namespace to use when pushing the image to the registry"
).hideHelp()
)
.addOption(
new CommandOption("--load-image", "Load the built image into your local docker").hideHelp()
)
.addOption(
new CommandOption(
"--build-platform <platform>",
"The platform to build the deployment image for"
)
.default("linux/amd64")
.hideHelp()
)
.addOption(
new CommandOption(
"--save-logs",
"If provided, will save logs even for successful builds"
).hideHelp()
)
.option("--network <mode>", "The networking mode for RUN instructions when using --self-hosted")
.action(async (path, options) => {
await handleTelemetry(async () => {
await printStandloneInitialBanner(true);
await deployCommand(path, options);
});
});
}
export async function deployCommand(dir: string, options: unknown) {
return await wrapCommandAction("deployCommand", DeployCommandOptions, options, async (opts) => {
return await _deployCommand(dir, opts);
});
}
async function _deployCommand(dir: string, options: DeployCommandOptions) {
intro(`Deploying project${options.skipPromotion ? " (without promotion)" : ""}`);
if (!options.skipUpdateCheck) {
await updateTriggerPackages(dir, { ...options }, true, true);
}
const cwd = process.cwd();
const projectPath = resolve(cwd, dir);
verifyDirectory(dir, projectPath);
const authorization = await login({
embedded: true,
defaultApiUrl: options.apiUrl,
profile: options.profile,
});
if (!authorization.ok) {
if (authorization.error === "fetch failed") {
throw new Error(
`Failed to connect to ${authorization.auth?.apiUrl}. Are you sure it's the correct URL?`
);
} else {
throw new Error(
`You must login first. Use the \`login\` CLI command.\n\n${authorization.error}`
);
}
}
const envVars = resolveLocalEnvVars(options.envFile);
if (envVars.TRIGGER_PROJECT_REF) {
logger.debug("Using project ref from env", { ref: envVars.TRIGGER_PROJECT_REF });
}
const resolvedConfig = await loadConfig({
cwd: projectPath,
overrides: { project: options.projectRef ?? envVars.TRIGGER_PROJECT_REF },
configFile: options.config,
});
logger.debug("Resolved config", resolvedConfig);
const gitMeta = await createGitMeta(resolvedConfig.workspaceDir);
logger.debug("gitMeta", gitMeta);
const branch =
options.env === "preview" ? getBranch({ specified: options.branch, gitMeta }) : undefined;
if (options.env === "preview" && !branch) {
throw new Error(
"Didn't auto-detect preview branch, so you need to specify one. Pass --branch <branch>."
);
}
if (options.env === "preview" && branch) {
//auto-archive a branch if the PR is merged or closed
if (gitMeta?.pullRequestState === "merged" || gitMeta?.pullRequestState === "closed") {
log.message(`Pull request ${gitMeta?.pullRequestNumber} is ${gitMeta?.pullRequestState}.`);
const $buildSpinner = spinner();
$buildSpinner.start(`Archiving preview branch: "${branch}"`);
const result = await archivePreviewBranch(authorization, branch, resolvedConfig.project);
$buildSpinner.stop(
result ? `Successfully archived "${branch}"` : `Failed to archive "${branch}".`
);
return;
}
logger.debug("Upserting branch", { env: options.env, branch });
const branchEnv = await upsertBranch({
accessToken: authorization.auth.accessToken,
apiUrl: authorization.auth.apiUrl,
projectRef: resolvedConfig.project,
branch,
gitMeta,
});
logger.debug("Upserted branch env", branchEnv);
log.success(`Using preview branch "${branch}"`);
if (!branchEnv) {
throw new Error(`Failed to create branch "${branch}"`);
}
}
const projectClient = await getProjectClient({
accessToken: authorization.auth.accessToken,
apiUrl: authorization.auth.apiUrl,
projectRef: resolvedConfig.project,
env: options.env,
branch,
profile: options.profile,
});
if (!projectClient) {
throw new Error("Failed to get project client");
}
const serverEnvVars = await projectClient.client.getEnvironmentVariables(resolvedConfig.project);
loadDotEnvVars(resolvedConfig.workingDir, options.envFile);
const destination = getTmpDir(resolvedConfig.workingDir, "build", options.dryRun);
const $buildSpinner = spinner();
const forcedExternals = await resolveAlwaysExternal(projectClient.client);
const { features } = resolvedConfig;
const [error, buildManifest] = await tryCatch(
buildWorker({
target: "deploy",
environment: options.env,
branch,
destination: destination.path,
resolvedConfig,
rewritePaths: true,
envVars: serverEnvVars.success ? serverEnvVars.data.variables : {},
forcedExternals,
listener: {
onBundleStart() {
$buildSpinner.start("Building trigger code");
},
onBundleComplete(result) {
$buildSpinner.stop("Successfully built code");
logger.debug("Bundle result", result);
},
},
})
);
if (error) {
$buildSpinner.stop("Failed to build code");
throw error;
}
logger.debug("Successfully built project to", destination.path);
if (options.dryRun) {
logger.info(`Dry run complete. View the built project at ${destination.path}`);
return;
}
const deploymentResponse = await projectClient.client.initializeDeployment({
contentHash: buildManifest.contentHash,
userId: authorization.userId,
selfHosted: options.selfHosted,
registryHost: options.registry,
namespace: options.namespace,
gitMeta,
type: features.run_engine_v2 ? "MANAGED" : "V1",
});
if (!deploymentResponse.success) {
throw new Error(`Failed to start deployment: ${deploymentResponse.error}`);
}
const deployment = deploymentResponse.data;
// If the deployment doesn't have any externalBuildData, then we can't use the remote image builder
// TODO: handle this and allow the user to the build and push the image themselves
if (!deployment.externalBuildData && !options.selfHosted) {
throw new Error(
`Failed to start deployment, as your instance of trigger.dev does not support hosting. To deploy this project, you must use the --self-hosted flag to build and push the image yourself.`
);
}
if (options.selfHosted) {
const result = await x("docker", ["buildx", "version"]);
if (result.exitCode !== 0) {
logger.debug(`"docker buildx version" failed (${result.exitCode}):`, result);
throw new Error(
"Failed to find docker buildx. Please install it: https://github.com/docker/buildx#installing."
);
}
}
const hasVarsToSync =
Object.keys(buildManifest.deploy.sync?.env || {}).length > 0 ||
// Only sync parent variables if this is a branch environment
(branch && Object.keys(buildManifest.deploy.sync?.parentEnv || {}).length > 0);
if (hasVarsToSync) {
const childVars = buildManifest.deploy.sync?.env ?? {};
const parentVars = buildManifest.deploy.sync?.parentEnv ?? {};
const numberOfEnvVars = Object.keys(childVars).length + Object.keys(parentVars).length;
const vars = numberOfEnvVars === 1 ? "var" : "vars";
if (!options.skipSyncEnvVars) {
const $spinner = spinner();
$spinner.start(`Syncing ${numberOfEnvVars} env ${vars} with the server`);
const uploadResult = await syncEnvVarsWithServer(
projectClient.client,
resolvedConfig.project,
options.env,
childVars,
parentVars
);
if (!uploadResult.success) {
await failDeploy(
projectClient.client,
deployment,
{
name: "SyncEnvVarsError",
message: `Failed to sync ${numberOfEnvVars} env ${vars} with the server: ${uploadResult.error}`,
},
"",
$spinner
);
} else {
$spinner.stop(`Successfully synced ${numberOfEnvVars} env ${vars} with the server`);
}
} else {
logger.log(
"Skipping syncing env vars. The environment variables in your project have changed, but the --skip-sync-env-vars flag was provided."
);
}
}
const version = deployment.version;
const rawDeploymentLink = `${authorization.dashboardUrl}/projects/v3/${resolvedConfig.project}/deployments/${deployment.shortCode}`;
const rawTestLink = `${authorization.dashboardUrl}/projects/v3/${
resolvedConfig.project
}/test?environment=${options.env === "prod" ? "prod" : "stg"}`;
const deploymentLink = cliLink("View deployment", rawDeploymentLink);
const testLink = cliLink("Test tasks", rawTestLink);
const $spinner = spinner();
if (isCI) {
log.step(`Building version ${version}\n`);
} else {
if (isLinksSupported) {
$spinner.start(`Building version ${version} ${deploymentLink}`);
} else {
$spinner.start(`Building version ${version}`);
}
}
const selfHostedRegistryHost = deployment.registryHost ?? options.registry;
const registryHost = selfHostedRegistryHost ?? "registry.trigger.dev";
const buildResult = await buildImage({
selfHosted: options.selfHosted,
buildPlatform: options.buildPlatform,
noCache: options.noCache,
push: options.push,
registryHost,
registry: options.registry,
deploymentId: deployment.id,
deploymentVersion: deployment.version,
imageTag: deployment.imageTag,
loadImage: options.loadImage,
contentHash: deployment.contentHash,
externalBuildId: deployment.externalBuildData?.buildId,
externalBuildToken: deployment.externalBuildData?.buildToken,
externalBuildProjectId: deployment.externalBuildData?.projectId,
projectId: projectClient.id,
projectRef: resolvedConfig.project,
apiUrl: projectClient.client.apiURL,
apiKey: projectClient.client.accessToken!,
branchName: branch,
authAccessToken: authorization.auth.accessToken,
compilationPath: destination.path,
buildEnvVars: buildManifest.build.env,
network: options.network,
onLog: (logMessage) => {
if (isCI) {
console.log(logMessage);
return;
}
if (isLinksSupported) {
$spinner.message(`Building version ${version} ${deploymentLink}: ${logMessage}`);
} else {
$spinner.message(`Building version ${version}: ${logMessage}`);
}
},
});
logger.debug("Build result", buildResult);
const warnings = checkLogsForWarnings(buildResult.logs);
if (!warnings.ok) {
await failDeploy(
projectClient.client,
deployment,
{ name: "BuildError", message: warnings.summary },
buildResult.logs,
$spinner,
warnings.warnings,
warnings.errors
);
throw new SkipLoggingError("Failed to build image");
}
if (!buildResult.ok) {
await failDeploy(
projectClient.client,
deployment,
{ name: "BuildError", message: buildResult.error },
buildResult.logs,
$spinner,
warnings.warnings
);
throw new SkipLoggingError("Failed to build image");
}
const getDeploymentResponse = await projectClient.client.getDeployment(deployment.id);
if (!getDeploymentResponse.success) {
await failDeploy(
projectClient.client,
deployment,
{ name: "DeploymentError", message: getDeploymentResponse.error },
buildResult.logs,
$spinner
);
throw new SkipLoggingError(getDeploymentResponse.error);
}
const deploymentWithWorker = getDeploymentResponse.data;
if (!deploymentWithWorker.worker) {
const errorData = deploymentWithWorker.errorData
? prepareDeploymentError(deploymentWithWorker.errorData)
: undefined;
await failDeploy(
projectClient.client,
deployment,
{
name: "DeploymentError",
message: errorData?.message ?? "Failed to get deployment with worker",
},
buildResult.logs,
$spinner
);
throw new SkipLoggingError(errorData?.message ?? "Failed to get deployment with worker");
}
const imageReference = options.selfHosted
? `${selfHostedRegistryHost ? `${selfHostedRegistryHost}/` : ""}${buildResult.image}${
buildResult.digest ? `@${buildResult.digest}` : ""
}`
: `${buildResult.image}${buildResult.digest ? `@${buildResult.digest}` : ""}`;
if (isCI) {
log.step(`Deploying version ${version}\n`);
} else {
if (isLinksSupported) {
$spinner.message(`Deploying version ${version} ${deploymentLink}`);
} else {
$spinner.message(`Deploying version ${version}`);
}
}
const finalizeResponse = await projectClient.client.finalizeDeployment(
deployment.id,
{
imageReference,
selfHosted: options.selfHosted,
skipPromotion: options.skipPromotion,
},
(logMessage) => {
if (isCI) {
console.log(logMessage);
return;
}
if (isLinksSupported) {
$spinner.message(`Deploying version ${version} ${deploymentLink}: ${logMessage}`);
} else {
$spinner.message(`Deploying version ${version}: ${logMessage}`);
}
}
);
if (!finalizeResponse.success) {
await failDeploy(
projectClient.client,
deployment,
{ name: "FinalizeError", message: finalizeResponse.error },
buildResult.logs,
$spinner
);
throw new SkipLoggingError("Failed to finalize deployment");
}
if (isCI) {
log.step(`Successfully deployed version ${version}`);
} else {
$spinner.stop(`Successfully deployed version ${version}`);
}
const taskCount = deploymentWithWorker.worker?.tasks.length ?? 0;
outro(
`Version ${version} deployed with ${taskCount} detected task${taskCount === 1 ? "" : "s"} ${
isLinksSupported ? `| ${deploymentLink} | ${testLink}` : ""
}`
);
if (!isLinksSupported) {
console.log("View deployment");
console.log(rawDeploymentLink);
console.log(); // new line
console.log("Test tasks");
console.log(rawTestLink);
}
setGithubActionsOutputAndEnvVars({
envVars: {
TRIGGER_DEPLOYMENT_VERSION: version,
TRIGGER_VERSION: version,
TRIGGER_DEPLOYMENT_SHORT_CODE: deployment.shortCode,
TRIGGER_DEPLOYMENT_URL: `${authorization.dashboardUrl}/projects/v3/${resolvedConfig.project}/deployments/${deployment.shortCode}`,
TRIGGER_TEST_URL: `${authorization.dashboardUrl}/projects/v3/${
resolvedConfig.project
}/test?environment=${options.env === "prod" ? "prod" : "stg"}`,
},
outputs: {
deploymentVersion: version,
workerVersion: version,
deploymentShortCode: deployment.shortCode,
deploymentUrl: `${authorization.dashboardUrl}/projects/v3/${resolvedConfig.project}/deployments/${deployment.shortCode}`,
testUrl: `${authorization.dashboardUrl}/projects/v3/${
resolvedConfig.project
}/test?environment=${options.env === "prod" ? "prod" : "stg"}`,
needsPromotion: options.skipPromotion ? "true" : "false",
},
});
}
export async function syncEnvVarsWithServer(
apiClient: CliApiClient,
projectRef: string,
environmentSlug: string,
envVars: Record<string, string>,
parentEnvVars?: Record<string, string>
) {
return await apiClient.importEnvVars(projectRef, environmentSlug, {
variables: envVars,
parentVariables: parentEnvVars,
override: true,
});
}
async function failDeploy(
client: CliApiClient,
deployment: Deployment,
error: { name: string; message: string },
logs: string,
$spinner: ReturnType<typeof spinner>,
warnings?: string[],
errors?: string[]
) {
logger.debug("failDeploy", { error, logs, warnings, errors });
$spinner.stop(`Failed to deploy project`);
const doOutputLogs = async (prefix: string = "Error") => {
if (logs.trim() !== "") {
const logPath = await saveLogs(deployment.shortCode, logs);
printWarnings(warnings);
printErrors(errors);
checkLogsForErrors(logs);
outro(
`${chalkError(`${prefix}:`)} ${
error.message
}. Full build logs have been saved to ${logPath}`
);
} else {
outro(`${chalkError(`${prefix}:`)} ${error.message}`);
}
};
const exitCommand = (message: string) => {
throw new SkipLoggingError(message);
};
const deploymentResponse = await client.getDeployment(deployment.id);
if (!deploymentResponse.success) {
logger.debug(`Failed to get deployment with worker: ${deploymentResponse.error}`);
} else {
const serverDeployment = deploymentResponse.data;
switch (serverDeployment.status) {
case "PENDING":
case "DEPLOYING":
case "BUILDING": {
await doOutputLogs();
await client.failDeployment(deployment.id, {
error,
});
exitCommand("Failed to deploy project");
break;
}
case "CANCELED": {
await doOutputLogs("Canceled");
exitCommand("Failed to deploy project");
break;
}
case "FAILED": {
const errorData = serverDeployment.errorData
? prepareDeploymentError(serverDeployment.errorData)
: undefined;
if (errorData) {
prettyError(errorData.message, errorData.stack, errorData.stderr);
if (logs.trim() !== "") {
const logPath = await saveLogs(deployment.shortCode, logs);
outro(`Aborting deployment. Full build logs have been saved to ${logPath}`);
} else {
outro(`Aborting deployment`);
}
} else {
await doOutputLogs("Failed");
}
exitCommand("Failed to deploy project");
break;
}
case "DEPLOYED": {
await doOutputLogs("Deployed with errors");
exitCommand("Deployed with errors");
break;
}
case "TIMED_OUT": {
await doOutputLogs("TimedOut");
exitCommand("Timed out");
break;
}
}
}
}
export function verifyDirectory(dir: string, projectPath: string) {
if (dir !== "." && !isDirectory(projectPath)) {
if (dir === "staging" || dir === "prod" || dir === "preview") {
throw new Error(`To deploy to ${dir}, you need to pass "--env ${dir}", not just "${dir}".`);
}
if (dir === "production") {
throw new Error(`To deploy to production, you need to pass "--env prod", not "production".`);
}
if (dir === "stg") {
throw new Error(`To deploy to staging, you need to pass "--env staging", not "stg".`);
}
throw new Error(`Directory "${dir}" not found at ${projectPath}`);
}
}