-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathaction.yml
40 lines (40 loc) · 1.25 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
name: 'Just Create A Release'
description: 'Creates releases on Github.'
author: 'Thomas Eizinger'
branding:
icon: star
color: white
inputs:
github_token:
description: 'A GitHub API token'
required: true
tag_name:
description: 'The name of the tag for this release. If GITHUB_REF points to a tag (i.e. you are running this action in the context of a tag being pushed), this tag is going to be used. If not, this input is required.'
required: false
target_commitish:
description: 'The commit this release should point to. Defaults to GITHUB_SHA.'
required: false
prerelease:
description: 'Whether this release is a prerelease.'
required: false
draft:
description: 'Whether this should be a draft release.'
required: false
body:
description: 'The body of the release.'
required: false
name:
description: 'The name of the release.'
required: false
outputs:
id:
description: 'The ID of the created release.'
url:
description: 'The API url to the created release.'
html_url:
description: 'The URL a user can use to view the created release in a web browser.'
upload_url:
description: 'The URL for uploading assets to the created release.'
runs:
using: 'node20'
main: 'dist/index.js'