We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f9d2a3d commit 832a22eCopy full SHA for 832a22e
.github/workflows/main.yml
@@ -7,7 +7,7 @@ on:
7
- main
8
9
jobs:
10
- Deploy-Production:
+ deploy-production:
11
runs-on: ubuntu-latest
12
steps:
13
- uses: actions/checkout@v4
@@ -28,6 +28,21 @@ jobs:
28
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
29
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_AWSL_FASTAPI_PROJECT_ID }}
30
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
41
+ node-version: 20
42
43
+ - name: Install Vercel CLI
44
+ run: npm install --global vercel@latest
45
46
- name: Deploy Project Artifacts to Vercel Awsl Saas
47
run: vercel --prod --token=${{ secrets.VERCEL_TOKEN }}
48
env:
0 commit comments