← Back to Browse
DevOps

CIDeploy

Generate CI/CD pipelines for GitHub Actions, GitLab CI, and CircleCI from a single config.

★★★★☆ 4.4 189 reviews
7.1k installs
v2.5.0 MIT

Install

npx skilldock install ci-deploy

About

Write one pipeline definition and CIDeploy generates platform-specific CI/CD configurations. Supports multi-stage builds, caching strategies, parallel test execution, deployment to Vercel/Render/AWS, Slack notifications, and automatic dependency updates.

Usage Example

# .cideploy.yaml
platforms: [github-actions, gitlab-ci]
stages:
  test:
    parallel: 4
    cache: node_modules
  deploy:
    provider: render
    auto: true
    branch: main