Skip to content

feat: update docs

feat: update docs #41

Workflow file for this run

name: "Deploy"
on:
push:
branches:
- main
jobs:
vercel:
runs-on: ubuntu-latest
name: "Deploy Automa Website"
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: '14'
registry-url: https://registry.npmjs.org/
- name: "Deploy to Vercel"
run: npx vercel --token ${VERCEL_TOKEN} --prod
env:
VERCEL_TOKEN: ${{ secrets.VERCEL_TOKEN }}
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }}
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}