-
Notifications
You must be signed in to change notification settings - Fork 4
/
action.yml
79 lines (79 loc) · 2.37 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
branding:
color: gray-dark
icon: package
description: A GitHub Action for Semantic Release.
inputs:
additional-plugins:
description: Additional semantic-release plugins to install.
required: false
commit-assets:
description:
Configures the list of assets to commit to the repository alongside the
changelog.
required: false
config-file:
description:
YAML or CommonJS module from which to load a semantic-release
configuration.
required: false
disable-changelog:
default: 'false'
description: Skips generating a CHANGELOG.md file.
required: false
dry-run:
default: 'false'
description: Configures Semantic Release to run in dry-run mode.
required: false
node-module:
default: 'false'
description:
Bumps the package version and updates the repository package.json and
package-lock.json or yarn-lock.yaml.
required: false
pkg-root:
default: '.'
description: Directory path to publish the npm module.
required: false
release-assets:
description:
Configures the list of assets to attach to the release alongside the
source code.
required: false
release-branches:
description: Configures the branches that Semantic Release will release to.
required: false
release-rules:
description:
Configures the rules that Semantic Release will use to determine the
correct release version.
required: false
release-rules-append:
description:
Appends additional rules to the defaults that Semantic Release will use to
determine the correct release version.
outputs:
build:
description: Build component of the released version.
git-head:
description: The Git checksum of the last commit of the release.
git-tag:
description: The Git tag of the release.
level:
description: Released level (major, minor or patch).
major:
description: Major component of the released version.
minor:
description: Minor component of the released version.
patch:
description: Patch component of the released version.
pre-release:
description: Pre-release component of the released version.
released:
description: Release status (boolean string).
version:
description:
Released version in format of X.Y.Z (major.minor.patch-prerelease+build).
name: Release me!
runs:
main: bootstrap.mjs
using: node20