Skip to content

chore: deploy to vercel on push to main #1

chore: deploy to vercel on push to main

chore: deploy to vercel on push to main #1

Workflow file for this run

name: Deploy to Vercel
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install Vercel CLI
run: npm install -g vercel
- name: Deploy to Vercel
run: vercel --token ${{ secrets.VERCEL_TOKEN }}