File tree Expand file tree Collapse file tree 3 files changed +26
-0
lines changed
Expand file tree Collapse file tree 3 files changed +26
-0
lines changed File renamed without changes.
Original file line number Diff line number Diff line change 1+ name : Vercel Production Deployment
2+ env :
3+ VERCEL_ORG_ID : ${{ secrets.VERCEL_ORG_ID }}
4+ VERCEL_PROJECT_ID : ${{ secrets.VERCEL_PROJECT_ID }}
5+ on :
6+ push :
7+ branches :
8+ - main
9+ jobs :
10+ Deploy-Preview :
11+ runs-on : ubuntu-latest
12+ steps :
13+ - uses : actions/checkout@v2
14+ - name : Install Vercel CLI
15+ run : npm install --global vercel@latest pmpm@latest
16+ - name : Install Dependencies
17+ run : pnpm install
18+ - name : Build Project Artifacts
19+ run : pnpm run build && cd docs && pnpm run predocs:build
20+ - name : Pull Vercel Environment Information
21+ run : vercel pull --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }}
22+ - name : Build Project Artifacts
23+ run : vercel build --prod --token=${{ secrets.VERCEL_TOKEN }}
24+ - name : Deploy Project Artifacts to Vercel
25+ run : vercel deploy --prebuilt --prod --token=${{ secrets.VERCEL_TOKEN }}
Original file line number Diff line number Diff line change 1+ .vercel
You can’t perform that action at this time.
0 commit comments