fix(deps): update dependency drizzle-zod to ^0.8.0 (#4181) #5
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Deploy roocode.com | ||
| on: | ||
| push: | ||
| branches: | ||
| - main | ||
| paths: | ||
| - 'apps/web-roo-code/**' | ||
| workflow_dispatch: | ||
| env: | ||
| VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }} | ||
| VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }} | ||
| jobs: | ||
| deploy: | ||
| runs-on: ubuntu-latest | ||
| if: ${{ secrets.VERCEL_TOKEN != '' }} | ||
|
Check failure on line 18 in .github/workflows/website-deploy.yml
|
||
| steps: | ||
| - name: Checkout code | ||
| uses: actions/checkout@v4 | ||
| - name: Setup Node.js and pnpm | ||
| uses: ./.github/actions/setup-node-pnpm | ||
| - name: Install Vercel CLI | ||
| run: npm install --global vercel@canary | ||
| - name: Pull Vercel Environment Information | ||
| run: npx vercel pull --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }} | ||
| - name: Build Project Artifacts | ||
| run: npx vercel build --prod --token=${{ secrets.VERCEL_TOKEN }} | ||
| - name: Deploy Project Artifacts to Vercel | ||
| run: npx vercel deploy --prebuilt --prod --token=${{ secrets.VERCEL_TOKEN }} | ||