-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathaction.yml
61 lines (61 loc) · 1.88 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
name: 'go-semantic-release'
description: 'fully automated package/module/image publishing'
branding:
icon: 'package'
color: 'blue'
inputs:
github-token:
description: 'github token'
required: false
changelog-file:
description: 'creates a changelog file'
required: false
ghr:
description: 'create a .ghr file with the parameters for tcnksm/ghr'
required: false
update-file:
description: 'updates the version of a certain file'
required: false
dry:
description: 'do not create release'
required: false
prerelease:
description: 'flags the release as a prerelease'
required: false
prepend:
description: 'flag changes to be prepended into the changelog'
required: false
allow-initial-development-versions:
description: 'starts your initial development release at 0.1.0'
required: false
force-bump-patch-version:
description: 'increments the patch version if no changes are found'
required: false
changelog-generator-opt:
description: 'options that are passed to the changelog-generator plugin'
required: false
custom-arguments:
description: 'custom arguments that are passed directly to the semantic-release cli'
required: false
hooks:
description: 'enable hooks plugins for semantic release'
required: false
bin:
description: 'optional path to the semantic-release binary'
required: false
outputs:
version:
description: 'the version of the created release'
version_major:
description: 'the major version of the created release'
version_minor:
description: 'the minor version of the created release'
version_patch:
description: 'the patch version of the created release'
version_prerelease:
description: 'the prerelease version of the created release'
changelog:
description: 'the generated release changelog'
runs:
using: 'node20'
main: 'dist/index.mjs'