Add screenshots and update instructions for Liquid Staking and sDAI s… #50
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |