All Projects → heroku → Heroku Pipeline

heroku / Heroku Pipeline

Experimental Heroku CLI plugin for continuous delivery on Heroku

Programming Languages

ruby
36898 projects - #4 most used programming language

This older "pipelines" feature has been superceded by the new Heroku Pipelines.

A new accompanying Heroku CLI plug-in is available.

Use of the older pipelines feature provided by the plugin below is no longer recommended. To uninstall it enter $heroku plugins:uninstall heroku-pipeline. Please upgrade as soon as possible. This older feature will be disabled soon.

heroku-pipeline

An experimental Heroku CLI plugin for continuous delivery on Heroku.

This plugin is used to set up a simple pipeline of apps where the latest slug of one app can be promoted to the next app downstream. The promotion only copies the upstream build artifact and leaves the downstream app's config vars, add-ons, and Git repo untouched. An app can only have one downstream app, but there is no limit to the length of the pipeline or the number of upstream apps.

Example Usage

An example of a simple pipeline where developers push to a staging app and later promote the slug to production:

$ heroku labs:enable pipelines
Enabling pipelines for [email protected] done
WARNING: This feature is experimental and may change or be removed without notice.
For more information see: https://devcenter.heroku.com/articles/using-pipelines-to-deploy-between-applications

$ cd deep-thought-1234-staging

$ heroku pipeline:add deep-thought-1234
Added downstream app: deep-thought-1234

$ heroku pipeline
Pipeline: deep-thought-1234-staging ---> deep-thought-1234

$ git commit -m "A super important fix"

$ git push heroku master

...

$ heroku pipeline:diff
Comparing deep-thought-1234-staging to deep-thought-1234...done, deep-thought-1234-staging ahead by 1 commit:
  73ab415  2012-01-01  A super important fix  (Joe Developer)

$ heroku pipeline:promote
Promoting deep-thought-1234-staging to deep-thought-1234...done, v2

$ heroku releases --app deep-thought-1234

=== deep-thought-1234 Releases
v2  Promote deep-thought-1234-staging v6 0f0a53b  [email protected]   1m ago
v1  Initial release                               [email protected]   2m ago

Installation

$ heroku plugins:install [email protected]:heroku/heroku-pipeline.git

Commands

  • heroku pipeline display info about the app pipeline
  • heroku pipeline:add DOWNSTREAM_APP add a downstream app to this app
  • heroku pipeline:remove remove the downstream app of this app
  • heroku pipeline:diff compare the commits of this app to its downstream app
  • heroku pipeline:promote promote the latest release of this app to its downstream app

Rolling Back

heroku rollback is a standard heroku command that allows you to rollback when something goes wrong. Its behavior is the same when using pipelines. Use it anytime you need to revert a pipeline promotion.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].