-
Notifications
You must be signed in to change notification settings - Fork 29
/
action.yml
42 lines (38 loc) · 1.09 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
name: Publish to npm
author: pascalgn
description: Automatically publish new versions to npm
inputs:
commit_pattern:
description: The pattern that matches version update commits.
required: false
tag_name:
description: The name of the tag that you want to create for the version.
required: false
tag_message:
description: The message of the tag that you want to create for the version.
required: false
create_tag:
description: Whether to create a git tag or not.
required: false
workspace:
description: Custom workspace directory that contains the package.json file.
required: false
publish_command:
description: Custom publish command.
required: false
publish_args:
description: Publish command arguments.
required: false
outputs:
changed:
description: Whether the version has changed in the examined commits
version:
description: The detected version number
commit:
description: The SHA of the commit where the version change has been detected
runs:
using: docker
image: Dockerfile
branding:
icon: package
color: blue