Skip to content

Fixed CI-CD Pipeline #4

Fixed CI-CD Pipeline

Fixed CI-CD Pipeline #4

Workflow file for this run

name: Deploy to Vercel
on:
push:
branches:
- main
pull_request:
branches:
- main
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 }}