Skip to content

Commit

Permalink
Add linearlite to deploy_all_examples.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
KyleAMathews committed Jan 22, 2025
1 parent 0125b14 commit 4d61b1b
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .github/workflows/deploy_all_examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,10 @@ jobs:
working-directory: ./examples/linearlite-read-only
run: pnpm sst deploy --stage production

- name: Deploy Linearlite
working-directory: ./examples/linearlite
run: pnpm sst deploy --stage production

- name: Deploy NextJs example
working-directory: ./examples/nextjs
run: pnpm sst deploy --stage production
6 changes: 5 additions & 1 deletion examples/proxy-auth/sst.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,11 @@ export default $config({
home: `aws`,
providers: {
cloudflare: `5.42.0`,
aws: { version: `6.57.0`, region: `eu-west-1`, profile: process.env.CI ? undefined : `marketing` },
aws: {
version: `6.57.0`,
region: `eu-west-1`,
profile: process.env.CI ? undefined : `marketing`,
},
postgresql: `3.14.0`,
},
}
Expand Down

0 comments on commit 4d61b1b

Please sign in to comment.