forked from justincy/github-action-npm-release
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
30 lines (30 loc) · 860 Bytes
/
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
name: Automatic GitHub Release
description: Automatic GitHub release when the package.json version changes
branding:
color: blue
icon: archive
inputs:
path:
description: Path of the package.json file that will be examined.
default: ${{ github.workspace }}
required: false
token:
description: Personal access token. Defaults to GITHUB_TOKEN.
default: ${{ github.token }}
required: false
outputs:
released:
description: 'Set to true when a release is created.'
html_url:
description: 'The URL for viewing the release in a browser.'
upload_url:
description: 'The URL for uploading assets to the release.'
release_id:
description: 'ID of the release.'
release_tag:
description: 'Tag of the release.'
release_name:
description: 'Name of the release.'
runs:
using: 'node12'
main: 'lib/index.js'