Skip to content

Commit

Permalink
ssg support
Browse files Browse the repository at this point in the history
  • Loading branch information
istarkov committed Jul 26, 2024
1 parent 690a5bc commit ca3a64d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions packages/domain/src/trpc/domain.ts
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ export const domainRouter = router({
buildId: build.id,
// preview support
branchName: env.GITHUB_REF_NAME,
destination: input.destination,
// action log helper (not used for deployment, but for action logs readablity)
projectDomainName: project.domain,
});
Expand Down
1 change: 1 addition & 0 deletions packages/trpc-interface/src/shared/deployment.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ const PublishInput = z.object({
builderOrigin: z.string(),
githubSha: z.string().optional(),

destination: z.enum(["saas", "static"]),
// preview support
branchName: z.string(),
// action log helper (not used for deployment, but for action logs readablity)
Expand Down

0 comments on commit ca3a64d

Please sign in to comment.