Skip to content

Commit

Permalink
Merge pull request #14 from icssc/fix-workflow
Browse files Browse the repository at this point in the history
commenting out invalid stage error for localsetup
  • Loading branch information
stevem-zhou authored May 19, 2024
2 parents 1186f8b + b3dc5f0 commit c524acb
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions stacks/frontend.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,10 @@ export function FrontendStack({ app, stack }: StackContext) {
} else if (app.stage.match(/^staging-(\d+)$/)) {
// check if stage is like staging-###
domainName = `${app.stage}.zotnfound.com`;
} else {
throw new Error("Invalid stage");
}
// } else {
// throw new Error("Invalid stage");
// }

const web = new StaticSite(stack, "web", {
path: "packages/web",
Expand Down

0 comments on commit c524acb

Please sign in to comment.