Skip to content
This repository has been archived by the owner on Dec 23, 2022. It is now read-only.

Latest commit

 

History

History
35 lines (22 loc) · 872 Bytes

README.md

File metadata and controls

35 lines (22 loc) · 872 Bytes

Deprecated

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

Octopus Deploy Release Action

A Simple Action that uses the Octopus Deploy octo Docker Image to Create a new Release for a given Project

Inputs

server

Required The URI of your Octopus Deploy Instance

apiKey

Required The API Key used to Authenticate with Octopus Deploy

project

Required The Name of the Project for this new Release

version

Required The Version for this Release

Example Usage

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'