Skip to content

Update README.md

Update README.md #4

Workflow file for this run

name: Deploy
on:
discussion:
types: [created, edited]
push:
branches:
- next14
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Vercel cli
run: npm install -g vercel
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 9
- name: Setup Vercel
run: vercel pull --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }}
- name: Build
run: vercel build --prod --token=${{ secrets.VERCEL_TOKEN }}
- name: Deploy
run: vercel deploy --prebuilt --prod --token=${{ secrets.VERCEL_TOKEN }}