forked from OctopusDeploy/push-build-information-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
24 lines (22 loc) · 789 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
name: 'Push Build Information to Octopus Deploy'
description: 'GitHub Action to push build information to Octopus Deploy'
author: 'Octopus Deploy'
branding:
color: 'blue'
icon: 'package'
inputs:
branch:
description: 'The branch name, if omitted the GitHub ref will be used.'
debug:
default: false
description: 'Enable debug logging.'
overwrite_mode:
default: 'FailIfExists'
description: 'Determines the action to perform with build information if it already exists in the repository. Valid values are "FailIfExists", "OverwriteExisting", and "IgnoreIfExists".'
packages:
description: 'A multi-line list of packages to push to Octopus Deploy.'
version:
description: 'The version of the package(s)'
runs:
using: 'node12'
main: 'dist/index.js'