Skip to content

Xanderbilla

Xanderbilla #10

Workflow file for this run

name: Deploy to Vercel
on:
push:
branches:
- main
paths-ignore:
- 'README.md'
- '.github/**'
pull_request:
branches:
- main
paths-ignore:
- 'README.md'
- '.github/**'
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Install Dependencies
run: npm install
- name: Build Project
run: npm run build
- name: Deploy to Vercel
run: npx vercel --prod --yes --token=${{ secrets.VERCEL_TOKEN }}