From 3137cc68e6d35173901dabb9b7b8a24b129f3e10 Mon Sep 17 00:00:00 2001 From: Aswanth Vc <69764494+aswanthabam@users.noreply.github.com> Date: Wed, 6 Nov 2024 02:26:08 +0530 Subject: [PATCH] Update vercel.yaml --- .github/workflows/vercel.yaml | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/.github/workflows/vercel.yaml b/.github/workflows/vercel.yaml index fa46c1fa3..65d0b799c 100644 --- a/.github/workflows/vercel.yaml +++ b/.github/workflows/vercel.yaml @@ -1,23 +1,23 @@ -# name: Deploy to Vercel +name: Deploy to Vercel -# on: -# push: -# branches: -# - dev-server +on: + push: + branches: + - dev-server -# jobs: -# build: -# runs-on: ubuntu-latest +jobs: + build: + runs-on: ubuntu-latest -# steps: -# - name: Checkout code -# uses: actions/checkout@v2 + steps: + - name: Checkout code + uses: actions/checkout@v2 -# - name: Install dependencies -# run: npm install + - name: Install dependencies + run: npm install -# - name: Build -# run: npm run build + - name: Build + run: npm run build -# - name: Deploy to Vercel -# run: vercel --token ${{ secrets.VERCEL_TOKEN }} --prod + - name: Deploy to Vercel + run: vercel --token ${{ secrets.VERCEL_TOKEN }} --prod