Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ To install the latest version (i.e. `*` or `latest`) of the Octopus CLI:

```yml
- name: Install Octopus CLI 🐙
id: install_octopus_cli
uses: OctopusDeploy/install-octopus-cli-action@v4
with:
version: '*'
Expand All @@ -32,6 +33,7 @@ To install a specific version of the Octopus CLI:

```yml
- name: Install Octopus CLI 🐙
id: install_octopus_cli
uses: OctopusDeploy/install-octopus-cli-action@v4
with:
version: 0.8.0
Expand All @@ -41,10 +43,12 @@ Here's an example of invoking the `account list` command after installing the Oc

```yml
- name: Install Octopus CLI 🐙
id: install_octopus_cli
uses: OctopusDeploy/install-octopus-cli-action@v4
with:
version: 0.8.0
- name: list-octopusdeploy-accounts
id: list_octopusdeploy_accounts
env:
OCTOPUS_API_KEY: ${{ secrets.apiKey }}
OCTOPUS_URL: ${{ secrets.serverURL }}
Expand Down