Skip to content

Commit 3557a3d

Browse files
committed
Merge remote-tracking branch 'origin/main' into run-engine-2
2 parents 6531e72 + c519a5a commit 3557a3d

File tree

87 files changed

+2654
-1164
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

87 files changed

+2654
-1164
lines changed

.changeset/cold-coins-burn.md

Lines changed: 0 additions & 7 deletions
This file was deleted.

.changeset/little-trains-begin.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/ninety-cars-peel.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/rude-news-dress.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/silent-squids-glow.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/wise-mirrors-hug.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/witty-jars-approve.md

Lines changed: 0 additions & 6 deletions
This file was deleted.

.github/workflows/publish.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,10 @@ on:
2424
- "packages/**"
2525
- "!packages/**/*.md"
2626
- "!packages/**/*.eslintrc"
27+
- "internal-packages/**"
2728
- "apps/**"
2829
- "!apps/**/*.md"
2930
- "!apps/**/*.eslintrc"
30-
- "integrations/**"
31-
- "!integrations/**/*.md"
32-
- "!integrations/**/*.eslintrc"
3331
- "pnpm-lock.yaml"
3432
- "pnpm-workspace.yaml"
3533
- "turbo.json"

apps/webapp/app/v3/utils/deploymentVersions.ts

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,15 @@ export function compareDeploymentVersions(versionA: string, versionB: string) {
1212
return 1;
1313
}
1414

15-
if (numberA < numberB) {
15+
// Convert to numbers before comparing
16+
const numA = Number(numberA);
17+
const numB = Number(numberB);
18+
19+
if (numA < numB) {
1620
return -1;
1721
}
1822

19-
if (numberA > numberB) {
23+
if (numA > numB) {
2024
return 1;
2125
}
2226

docs/cli-deploy-commands.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
---
2-
title: "CLI deploy options"
2+
title: "CLI deploy command"
33
sidebarTitle: "deploy"
4-
description: "Use these options to help deploy your tasks to Trigger.dev."
4+
description: "Use the deploy command to deploy your tasks to Trigger.dev."
55
---
66

7-
import CliDeployCommands from '/snippets/cli-commands-deploy.mdx';
7+
import CliDeployCommands from "/snippets/cli-commands-deploy.mdx";
88

9-
<CliDeployCommands/>
9+
<CliDeployCommands />

docs/cli-promote-commands.mdx

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
title: "CLI promote command"
3+
sidebarTitle: "promote"
4+
description: "Use the promote command to promote a previously deployed version to the current version."
5+
---
6+
7+
import CliPromoteCommands from "/snippets/cli-commands-promote.mdx";
8+
9+
<CliPromoteCommands />

0 commit comments

Comments
 (0)