vercel-ci-integration

Featured

Configure Vercel CI/CD with GitHub Actions, preview deployments, and automated testing. Use when setting up automated deployments, configuring preview bots, or integrating Vercel into your CI pipeline. Trigger with phrases like "vercel CI", "vercel GitHub Actions", "vercel automated deploy", "CI vercel", "vercel pipeline".

AI & Automation 2,274 stars 319 forks Updated today MIT

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Vercel CI Integration ## Overview Set up automated Vercel deployments in GitHub Actions with preview deployments on PRs, production deploys on merge to main, and optional test gating. Covers both Vercel's built-in Git integration and custom CI pipelines using the Vercel CLI. ## Prerequisites - GitHub repository with Actions enabled - Vercel project linked to the repo - `VERCEL_TOKEN` stored as GitHub Secret - `VERCEL_ORG_ID` and `VERCEL_PROJECT_ID` from `.vercel/project.json` ## Instructions ### Step 1: Store CI Secrets in GitHub ```bash # Get project and org IDs cat .vercel/project.json # {"orgId":"team_xxx","projectId":"prj_xxx"} # Add secrets to GitHub repo gh secret set VERCEL_TOKEN --body "your-vercel-token" gh secret set VERCEL_ORG_ID --body "team_xxx" gh secret set VERCEL_PROJECT_ID --body "prj_xxx" ``` ### Step 2: GitHub Actions — Preview on PR ```yaml # .github/workflows/vercel-preview.yml name: Vercel Preview Deployment on: pull_request: branches: [main] jobs: deploy-preview: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - name: Install Vercel CLI run: npm install -g vercel@latest - name: Pull Vercel Environment run: vercel pull --yes --environment=preview --token=${{ secrets.VERCEL_TOKEN }} env: VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }} VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }} - name: Build Project run: vercel build --token=${{ secrets.VE...

Details

Author
jeremylongshore
Repository
jeremylongshore/claude-code-plugins-plus-skills
Created
7 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Featured

vercel-deploy-preview

Create and manage Vercel preview deployments for branches and pull requests. Use when deploying a preview for a pull request, testing changes before production, or sharing preview URLs with stakeholders. Trigger with phrases like "vercel deploy preview", "vercel preview URL", "create preview deployment", "vercel PR preview".

2,274 Updated today
jeremylongshore
AI & Automation Featured

vercel-deploy-integration

Deploy and manage Vercel production deployments with promotion, rollback, and multi-region strategies. Use when deploying to production, configuring deployment regions, or setting up blue-green deployment patterns on Vercel. Trigger with phrases like "deploy vercel", "vercel production deploy", "vercel promote", "vercel rollback", "vercel regions".

2,274 Updated today
jeremylongshore
DevOps & Infrastructure Listed

vercel-github-actions-deploy

Set up GitHub Actions to deploy any Vercel project using the Git Author Override method, enabling teammates to deploy on the free Hobby plan. Use when the user asks about Vercel deployment via GitHub Actions, CI/CD for Vercel, letting teammates deploy on Vercel free plan, bypassing Vercel's Hobby plan deploy restrictions, or automating Vercel production deploys. Covers workflow setup, GitHub Secrets configuration, and package manager variants (bun, npm, pnpm).

26 Updated 3 months ago
itsOmSarraf
DevOps & Infrastructure Listed

deployments-cicd

Vercel deployment and CI/CD expert guidance. Use when deploying, promoting, rolling back, inspecting deployments, building with --prebuilt, or configuring CI workflow files for Vercel.

1 Updated 5 days ago
build-with-dhiraj
AI & Automation Solid

vercel-deploy

Deploy applications and websites to Vercel. Use when the user requests deployment actions like "deploy my app", "deploy and give me the link", "push this live", or "create a preview deployment".

2,210 Updated 1 weeks ago
foryourhealth111-pixel