Skip to content

fix: scale up all slides - widen content areas, bump text sizes, fill… #5

fix: scale up all slides - widen content areas, bump text sizes, fill…

fix: scale up all slides - widen content areas, bump text sizes, fill… #5

Workflow file for this run

name: Deploy to Vercel
on:
push:
branches: [main]
env:
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }}
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- run: npm ci
- run: npx vercel pull --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }}
- run: npx vercel build --prod --token=${{ secrets.VERCEL_TOKEN }}
- run: npx vercel deploy --prebuilt --prod --token=${{ secrets.VERCEL_TOKEN }}