Skip to content

fix(chat): verify thread existence in backend to prevent fk violation… #54

fix(chat): verify thread existence in backend to prevent fk violation…

fix(chat): verify thread existence in backend to prevent fk violation… #54

Workflow file for this run

name: Deploy Website to Vercel
on:
push:
branches: [main]
paths:
- 'apps/website/**'
- 'packages/**'
- '.github/workflows/deploy-app.yml'
concurrency:
group: deploy-website-${{ github.ref }}
cancel-in-progress: true
jobs:
deploy:
name: Deploy Debo Website
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 22
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Build shared packages
run: bun run build:packages
- name: Deploy to Vercel
env:
VERCEL_TOKEN: ${{ secrets.VERCEL_TOKEN }}
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }}
run: bun run deploy:website