forked from ButlerLogic/action-autotag
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathaction.yml
29 lines (29 loc) · 1.08 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
name: MultiPublish
description: Automatically publish JS modules (supports multiple modules, respects .npmrc)
author: Author.io
branding:
icon: box
color: red
inputs:
scan:
description: Optional. Specify which directories (relative to the root) should be scanned for modules. Comma separated, supports glob syntax.
required: false
default: "./"
ignore:
description: Optional. Prevent specific directories. Comma-separated, supports glob syntax.
required: false
force:
description: Optional. Force a private module to be published (see limitations in README)
required: false
dist_tag:
description: Optional. The dist-tag to apply to non-prerelease modules. examples - latest, stable, current
required: false
prerelease_dist_tag:
description: Optional. The name of a dist-tag to use if the module is a prerelease. examples - beta, next, dev, canary
required: false
outputs:
modules:
description: "A comma-delimited list of modules that were updated. Ex: '@myorg/mypkg@1.0.0, @myorg/myotherpkg@1.4.1'"
runs:
using: "node16"
main: "lib/main.js"