-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
64 lines (64 loc) · 1.69 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
name: Lumynous GitHub Release Action
description: An action to create GitHub release.
author: Lumynous
branding:
icon: archive
color: blue
inputs:
token:
description: The GitHub token.
required: true
changelog:
description: The path to the changelog.
required: false
default: CHANGELOG.md
tag-template:
description: The template of the Git tag.
required: false
default: v{version}
major-tag-template:
description: The template of the Git tag of the major version.
required: false
default: v{major}
minor-tag-template:
description: The template of the Git tag of the major version.
required: false
default: v{major}.{minor}
name-template:
description: The template of the GitHub release.
required: false
default: v{version}
is-draft:
description: If the GitHub release is a draft.
required: false
default: 'false'
outputs:
version:
description: The version.
major:
description: The major version.
minor:
description: The minor version.
patch:
description: The patch version.
prerelease:
description: The prerelease name or an empty string.
build:
description: The build number or an empty string.
release-date:
description: The release date.
change:
description: The changelog of last version.
tag:
description: The name of the Git tag.
major-tag:
description: The name of the Git tag of the major version.
minor-tag:
description: The name of the Git tag of the minor version.
html-url:
description: The URL to the page of the GitHub release.
upload-url:
description: The URL to upload assets for the GitHub release.
runs:
using: docker
image: Dockerfile