-
Notifications
You must be signed in to change notification settings - Fork 4
/
action.yml
50 lines (50 loc) · 1.57 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
name: Octopus Deploy Build Information
description: Generate build information for Octopus Deploy
inputs:
github_token:
description: GitHub personal access token
required: true
default: ${{ github.token }}
octopus_api_key:
description: Authentication key for the Octopus Deploy API
required: false
octopus_server:
description: URL of the Octopus Deploy server
required: false
octopus_environment:
description: Name of the Octopus Deploy environment
required: false
octopus_project:
description: Name of the Octopus Deploy project
required: false
octopus_space:
description: Name of the Octopus Deploy space
required: false
output_path:
description: Path to the output directory
required: false
push_overwrite_mode:
description: Action to take when build information would be overwritten (FailIfExists, IgnoreIfExists, OverwriteExisting)
required: true
default: FailIfExists
push_package_ids:
description: Whitespace-separated list of package IDs for which to push build information to Octopus Deploy
required: false
push_version:
description: Version of the packages to push
required: false
version_tag_prefix:
description: Prefix for release version tags in the repository (e.g. 'v')
required: true
default: v
outputs:
output_file:
description: The full path to the build information JSON file, if one was written
previous_release_sha:
description: The commit SHA of the previous release
runs:
using: node20
main: dist/index.js
branding:
icon: file-plus
color: blue