deployments-cicd

Guide Vercel deployments and CI/CD workflows with CLI commands and pipeline integrations.

Updated Aug 27, 2026
One-click install
npx skills add https://github.com/namhoangg/agent-starter-kit --skill deployments-cicd-namhoangg
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: deployments-cicd
Source: https://github.com/namhoangg/agent-starter-kit/tree/main/cursor/skills/deployments-cicd
Command: npx skills add https://github.com/namhoangg/agent-starter-kit --skill deployments-cicd-namhoangg

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This guide provides expert guidance on configuring and executing Vercel deployments and CI/CD pipelines, covering previews, production promotions, rollbacks, and deployment inspection to streamline release workflows.

Core Features & Use Cases

  • Comprehensive deployment commands: vercel deploy, vercel build, vercel promote, vercel rollback, vercel inspect, vercel logs.
  • CI/CD integration: GitHub Actions, GitLab CI, Bitbucket Pipelines, and local scripting to automate builds and deployments.
  • Use cases include: setting up preview deployments for feature branches, promoting verified previews to production, and performing safe rollbacks in production.

Quick Start

Install the Vercel CLI, configure your project, and start deploying with vercel deploy.

Frequently Asked Questions about deployments-cicd

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I automate Vercel deployments using GitHub Actions?

Automate Vercel deployments by integrating the Vercel CLI within GitHub Actions to execute vercel deploy for previews and vercel promote for production. Configure environment variables and project settings to enable automated CI/CD release workflows.

What is the best way to promote a Vercel preview deployment to production?

The best way to promote a Vercel preview to production is using the vercel promote command after verifying the build. This ensures the exact prebuilt artifact tested in the preview environment is pushed to production safely.

How do I perform a rollback in Vercel when a production deployment fails?

Perform a Vercel rollback using the vercel rollback command to instantly revert production traffic to a previous stable deployment. Inspect deployment details and logs with vercel inspect and vercel logs to diagnose the failure.

Can I use Vercel CLI to build with prebuilt artifacts in a CI/CD pipeline?

Yes, you can use the Vercel CLI to build with prebuilt artifacts by running vercel build. This generates the deployment output before vercel deploy uploads it, optimizing CI/CD pipelines across GitLab CI and Bitbucket Pipelines.

Does Vercel CI/CD integration work with GitLab CI and Bitbucket Pipelines?

Vercel CI/CD integration works directly with GitLab CI and Bitbucket Pipelines. Configure standard deployment commands and environment variables within your pipeline configuration to automate previews, promotions, and rollbacks.

Why do I need to configure environment variables for Vercel deployments?

You need to configure environment variables for Vercel deployments to ensure the build process and runtime have the required API keys and configuration. Proper setup prevents deployment failures and ensures previews and production environments function correctly.