Skip to content

Latest commit

 

History

History
139 lines (94 loc) · 3.69 KB

File metadata and controls

139 lines (94 loc) · 3.69 KB

heroku releases

display the releases for an app

heroku releases

display the releases for an app

USAGE
  $ heroku releases -a <value> [--prompt] [--json] [-n <value>] [-r <value>]

FLAGS
  -a, --app=<value>     (required) app to run command against
  -n, --num=<value>     number of releases to show
  -r, --remote=<value>  git remote of app to use
      --json            output releases in json format

GLOBAL FLAGS
  --prompt  interactively prompt for command arguments and flags

DESCRIPTION
  display the releases for an app

EXAMPLES
   $ v1 Config add FOO_BAR email@example.com 2015/11/17 17:37:41 (~ 1h ago) 

   $ v2 Config add BAR_BAZ email@example.com 2015/11/17 17:37:41 (~ 1h ago) 

   $ v3 Config add BAZ_QUX email@example.com 2015/11/17 17:37:41 (~ 1h ago)

See code: src/commands/releases/index.ts

heroku releases:info [RELEASE]

view detailed information for a release

USAGE
  $ heroku releases:info [RELEASE] -a <value> [--prompt] [--json] [-r <value>] [-s]

ARGUMENTS
  [RELEASE]  ID of the release. If omitted, we use the last release ID.

FLAGS
  -a, --app=<value>     (required) app to run command against
  -r, --remote=<value>  git remote of app to use
  -s, --shell           output in shell format
      --json            output in json format

GLOBAL FLAGS
  --prompt  interactively prompt for command arguments and flags

DESCRIPTION
  view detailed information for a release

See code: src/commands/releases/info.ts

heroku releases:output [RELEASE]

View the release command output

USAGE
  $ heroku releases:output [RELEASE] -a <value> [--prompt] [-r <value>]

ARGUMENTS
  [RELEASE]  ID of the release. If omitted, we use the last release ID.

FLAGS
  -a, --app=<value>     (required) app to run command against
  -r, --remote=<value>  git remote of app to use

GLOBAL FLAGS
  --prompt  interactively prompt for command arguments and flags

DESCRIPTION
  View the release command output

See code: src/commands/releases/output.ts

heroku releases:retry

retry the latest release-phase command

USAGE
  $ heroku releases:retry -a <value> [--prompt]

FLAGS
  -a, --app=<value>  (required) app to run command against

GLOBAL FLAGS
  --prompt  interactively prompt for command arguments and flags

DESCRIPTION
  retry the latest release-phase command

EXAMPLES
   $ heroku releases:retry --app happy-samurai-42

See code: src/commands/releases/retry.ts

heroku releases:rollback [RELEASE]

Roll back to a previous release.

USAGE
  $ heroku releases:rollback [RELEASE] -a <value> [--prompt] [-r <value>]

ARGUMENTS
  [RELEASE]  ID of the release. If omitted, we use the last eligible release.

FLAGS
  -a, --app=<value>     (required) app to run command against
  -r, --remote=<value>  git remote of app to use

GLOBAL FLAGS
  --prompt  interactively prompt for command arguments and flags

DESCRIPTION
  Roll back to a previous release.

  If RELEASE is not specified, it will roll back to the last eligible release.

See code: src/commands/releases/rollback.ts