Skip to content

Commit 832a22e

Browse files
ci: parallelize Vercel deployments
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent f9d2a3d commit 832a22e

File tree

1 file changed

+16
-1
lines changed

1 file changed

+16
-1
lines changed

.github/workflows/main.yml

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
- main
88

99
jobs:
10-
Deploy-Production:
10+
deploy-production:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- uses: actions/checkout@v4
@@ -28,6 +28,21 @@ jobs:
2828
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
2929
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_AWSL_FASTAPI_PROJECT_ID }}
3030

31+
deploy-saas:
32+
runs-on: ubuntu-latest
33+
steps:
34+
- uses: actions/checkout@v4
35+
with:
36+
submodules: recursive
37+
38+
- name: Install Node.js
39+
uses: actions/setup-node@v4
40+
with:
41+
node-version: 20
42+
43+
- name: Install Vercel CLI
44+
run: npm install --global vercel@latest
45+
3146
- name: Deploy Project Artifacts to Vercel Awsl Saas
3247
run: vercel --prod --token=${{ secrets.VERCEL_TOKEN }}
3348
env:

0 commit comments

Comments
 (0)