OctopusDeploy / OctoTFS

| Public | Octopus extensions for Azure DevOps, TFS, VSTS, and VSO
https://marketplace.visualstudio.com/items?itemName=octopusdeploy.octopus-deploy-build-release-tasks
Other
0 stars 41 forks source link

Updated CLI installer - v6 #279

Closed slewis74 closed 1 year ago

slewis74 commented 1 year ago

V6 update for the installer step. Switch to the Go CLI and downloads come from GitHub releases.

Includes updating the build workflow to use v3 of our GHAs.

Example step image

image

image

image

Yaml pipeline example

- task: OctoInstaller@6
  inputs:
    octopusVersion: '1.*'

- script: |
    octopus project list
  displayName: 'Run a script'
  env:
    OCTOPUS_URL: $(OCTOPUS_URL)
    OCTOPUS_API_KEY: $(OCTOPUS_API_KEY)
    OCTOPUS_SPACE: 'Some Space'