Skip to content

Add minimal Python API deployable with Next/Vercel (#33) #13

Add minimal Python API deployable with Next/Vercel (#33)

Add minimal Python API deployable with Next/Vercel (#33) #13

Workflow file for this run

name: Deploy Production
on:
push:
branches:
- main
permissions:
contents: read
pull-requests: write
jobs:
Site:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: amondnet/vercel-action@v25
with:
vercel-version: 30.2.2
github-comment: false
vercel-args: "--prod"
vercel-token: ${{ secrets.VERCEL_TOKEN }}
vercel-org-id: ${{ vars.VERCEL_ORG_ID}}
vercel-project-id: ${{ vars.VERCEL_PROJECT_ID_SITE}}
Studio:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: amondnet/vercel-action@v25
with:
vercel-version: 30.2.2
github-comment: false
vercel-args: "--prod"
vercel-token: ${{ secrets.VERCEL_TOKEN }}
vercel-org-id: ${{ vars.VERCEL_ORG_ID}}
vercel-project-id: ${{ vars.VERCEL_PROJECT_ID_STUDIO}}