Pipelines

Automated CI/CD pipelines for your applications.

Features

  • Git Integration - Auto-trigger on push, PR, or tag
  • Multi-Stage - Build, test, deploy stages
  • Parallel Jobs - Run jobs concurrently
  • Secrets - Inject secrets into pipeline
  • Artifacts - Pass files between stages

Pipeline Triggers

  • Push to branch
  • Pull request opened/updated
  • Tag created
  • Manual trigger
  • Scheduled (cron)

Create Pipeline

POST /api/v1/apps/{id}/pipelines
{
  "name": "Production Deploy",
  "trigger": {
    "branch": "main",
    "events": ["push"]
  }
}