-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
45 lines (45 loc) · 1.4 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
name: "Create/Update Github Release"
description: "An Action for creating and/or overwriting a GitHub release"
inputs:
token:
description: "Token used for creating/editing releases"
required: true
tag:
description: "Tag to create/move and use for the release"
required: true
target_commit:
description: "Commit, branch or tag the tag should be created from/moved to"
required: false
prerelease:
description: "Should the release be marked as a prerelease?"
required: false
draft:
description: "Should the release be marked as a draft?"
required: false
name:
description: "Name of the release"
required: false
body:
description: "Description of the release"
required: false
files:
description: "Files to attach; newline seperated, recursive globbing supported"
required: false
fail_on_no_files:
description: "Should the action fail if none of the file globs match?"
required: false
default: "false"
clear_attachments:
description: "Should all existing attachments be deleted before uploading new files?"
required: false
default: "true"
skip_tag_creation:
description: "Should the tag creation/modification be skipped? Set to true if the tag already exists and points to the correct commit"
required: false
default: "false"
runs:
using: "docker"
image: "Dockerfile"
branding:
color: green
icon: package