Skip to content

pipeline: add/github pages workflow #5

pipeline: add/github pages workflow

pipeline: add/github pages workflow #5

Workflow file for this run

name: Deploy to Vercel
on:
push:
branches:
- develop
jobs:
deploy-to-vercel:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install Vercel CLI
run: npm i -g vercel
- name: Deploy to Vercel
id: vercel-deploy
env:
VERCEL_TOKEN: ${{ secrets.VERCEL_TOKEN }}
run: vercel -t $VERCEL_TOKEN --yes --prod