Skip to content
name: Preview Deployment - Website
env:
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID_WEBSITE }}
TURBO_TOKEN: ${{ secrets.VERCEL_TOKEN }}
TURBO_TEAM: ${{ secrets.VERCEL_ORG_ID }}
on:
push:
branches-ignore:
- main
paths:
- apps/website/**
- packages/**
jobs:
deploy-preview:

Check failure on line 15 in .github/workflows/preview-website.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/preview-website.yml

Invalid workflow file

You have an error in your yaml syntax on line 15
runs-on: ubuntu-latest
steps:
uses: actions/checkout@v4
- name: Generate slug
uses: rlespinasse/github-slug-action@v4
- uses: oven-sh/setup-bun@v1
with:
bun-version: "1.0.11"
- name: Install dependencies
run: bun install --frozen-lockfile
- name: 📤 Pull Vercel Environment Information
run: bun vercel pull --yes --environment=preview --token=${{ secrets.VERCEL_TOKEN }}
- name: 🏗 Build Project Artifacts
run: bun vercel build --token=${{ secrets.VERCEL_TOKEN }}
- name: Deploy Project Artifacts to Vercel
run: |
bun vercel deploy --prebuilt --archive=tgz --token=${{ secrets.VERCEL_TOKEN }} > domain.txt
bun vercel alias --scope=${{ secrets.VERCEL_ORG_ID }} --token=${{ secrets.VERCEL_TOKEN }} set `cat domain.txt` ${{ env.GITHUB_REF_SLUG }}.midday.ai