-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathaction.yml
35 lines (35 loc) · 931 Bytes
/
action.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
name: OctopusDeploy Create Release
author: Burton Rheutan
description: Create a new OctopusDeploy release
inputs:
octopus_url:
description: 'URL of the OctopusDeploy server'
required: true
api_key:
description: 'OctopusDeploy API key'
required: true
project_name:
description: 'OctopusDeploy project to create the release for'
required: true
release_version:
description: 'The version to create the release for'
required: true
space_name:
description: 'The OctopusDeploy space that the project is in'
required: false
default: 'Default'
channel_name:
description: 'The Deployment channel to create the release for'
required: false
default: 'Default'
outputs:
release_id:
description: 'ID of the created release'
runs:
using: 'docker'
image: 'docker://burtonr/octopus-action-client:0.4'
args:
- 'release'
branding:
icon: 'package'
color: 'blue'