Skip to content

Files

Latest commit

467b8ab · Mar 20, 2025

History

History
124 lines (84 loc) · 3.3 KB
·

releases.md

File metadata and controls

124 lines (84 loc) · 3.3 KB
·

heroku releases

display the releases for an app

heroku releases

display the releases for an app

USAGE
  $ heroku releases -a <value> [-n <value>] [--json] [-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

DESCRIPTION
  display the releases for an app

EXAMPLES
  v1 Config add FOO_BAR [email protected] 2015/11/17 17:37:41 (~ 1h ago)

  v2 Config add BAR_BAZ [email protected] 2015/11/17 17:37:41 (~ 1h ago)

  v3 Config add BAZ_QUX [email protected] 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> [--json] [-s] [-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
  -s, --shell           output in shell format
      --json            output in json format

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> [-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

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>

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

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> [-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

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