Skip to content
You're viewing an older version of this GitHub Action. Do you want to see the latest version instead?
octopusdeploy

GitHub Action

Install Octopus CLI

v1.1.9

Install Octopus CLI

octopusdeploy

Install Octopus CLI

GitHub Action to install the Octopus CLI

Installation

Copy and paste the following snippet into your .yml file.

              

- name: Install Octopus CLI

uses: OctopusDeploy/[email protected]

Learn more about this action in OctopusDeploy/install-octopus-cli-action

Choose a version

install-octopus-cli-action

This is a GitHub Action to install the Octopus CLI on runners and self-hosted environments. Once installed, the Octopus CLI may be used to issue commands to Octopus Deploy. Subsequent actions may use the Octopus CLI, which is cached and available via PATH.

What is the Octopus CLI?

The Octopus CLI is a command line tool that builds on top of the Octopus REST API. It enables you to package applications for deployment and manage your environments, deployments, channels, projects, and workers in Octopus Deploy.

Examples

To install the latest version of the Octopus CLI:

steps:
  - uses: actions/checkout@v2
  - name: Install Octopus CLI πŸ™
    uses: OctopusDeploy/install-octopus-cli-action@<version>
    with:
      version: latest

To install a specific version of the Octopus CLI:

steps:
  - uses: actions/checkout@v2
  - name: Install Octopus CLI πŸ™
    uses: OctopusDeploy/install-octopus-cli-action@<version>
    with:
      version: 7.4.3140

Here's an example of invoking the list-deployments command after installing the Octopus CLI:

steps:
  - uses: actions/checkout@v2
  - name: Install Octopus CLI πŸ™
    uses: OctopusDeploy/install-octopus-cli-action@<version>
    with:
      version: 7.4.3190
  - name: list-octopusdeploy-deployments
    run: >
      octo list-deployments --server=${{ env.serverURL }}
        --apiKey=${{ secrets.apiKey }}

πŸ“₯ Inputs

The following input is optional:

Name Description Default
version The version number of the Octopus CLI to download and install (i.e. 7.4.3190). latest