-
Notifications
You must be signed in to change notification settings - Fork 6
/
action.yml
43 lines (43 loc) · 1.16 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
name: 'Update GitHub Release'
description: 'Update GitHub Release'
author: 'tubone24'
inputs:
release_name:
description: 'new release name, if not, take over before name'
required: false
body:
description: 'new body text, if not, take over before text'
required: false
draft:
description: 'new draft, if not, take over before draft'
required: false
prerelease:
description: 'new prerelease, if not, take over prerelease'
required: false
is_append_body:
description: 'If true, append body text, If false, overwrite body text, default is false'
required: false
body_path:
description: 'Path to file with new body text.'
required: false
outputs:
id:
description: 'The ID of the Release'
html_url:
description: 'The HTML url of the Release'
upload_url:
description: 'The upload url of the Release'
name:
description: 'The name of the Release'
body:
description: 'The body of the Release'
published_at:
description: 'The publish at of the Release'
tag_name:
description: 'The tag name of the Release'
runs:
using: 'node12'
main: 'dist/index.js'
branding:
icon: 'tag'
color: 'green'