Skip to content

chore: MVP launch! (#103) #4

chore: MVP launch! (#103)

chore: MVP launch! (#103) #4

Workflow file for this run

name: web (prod)
on:
push:
branches:
- prod
paths:
- "apps/web/**"
- "packages/server/**"
jobs:
deploy:
runs-on: ubuntu-latest
environment: deploy-web
env:
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }}
steps:
- name: 💾 Checkout code
uses: actions/checkout@v4
- name: 📦 Setup bun
uses: oven-sh/setup-bun@v2
- name: 📦 Install Vercel CLI
run: bun add --global vercel@latest
- name: 🚀 Deploy Project to Vercel
run: vercel deploy --prod --token=${{ secrets.VERCEL_TOKEN }}