With the Release of GitHub Actions from Octopus Deploy, you can now make use of the official action: https://github.com/OctopusDeploy/create-release-action
A Simple Action that uses the Octopus Deploy octo
Docker Image to Create a new Release for a given Project
Required The URI of your Octopus Deploy Instance
Required The API Key used to Authenticate with Octopus Deploy
Required The Name of the Project for this new Release
Required The Version for this Release
uses: ricado-group/octopus-deploy-release-action@v1.2
with:
server: 'https://instancename.octopus.app'
apiKey: ${{ secrets.OCTOPUS_APIKEY }}
project: 'MyProjectName'
version: '2.1.0'