Vercel Deploy Workflow
SkillsStep-by-step deployment skill for Vercel with environment variable management and preview deployments.
1703/23/2026
markdown1 file
SKILL.md810 B
Vercel Deploy Workflow
Invoke with: /deploy
Pre-deploy Checklist
- Run
pnpm buildlocally — fix any build errors - Run
pnpm lint— no warnings allowed - Run
pnpm test— all tests pass - Check .env.example is up to date with any new variables
- Update CHANGELOG.md if applicable
Deploy Steps
- Push to main branch for production deploy
- Push to feature branch for preview deploy
- Monitor the Vercel dashboard for build status
- Test the preview URL before merging
Environment Variables
- Never commit .env.local
- Add new env vars in Vercel dashboard before deploying code that uses them
- Use NEXT_PUBLIC_ prefix for client-side variables
Rollback
- If production breaks: Vercel dashboard → Deployments → Promote previous deployment
- Or:
vercel rollbackvia CLI