-
Notifications
You must be signed in to change notification settings - Fork 2
/
action.yml
23 lines (23 loc) · 988 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
name: 'Node Draft Releaser'
description: 'Automatically publish an existing Draft Release when the "package.json" version changes'
author: 'JamesMGreene'
inputs:
allow_unmatched_draft_tag:
description: 'Should this be allowed to publish an existing Draft Release that is not slated to create a Tag matching the new version number?'
default: 'true'
allow_release_name_update:
description: 'Should this Action be allowed to update the name of an existing Draft Release if its current name is a different valid SemVer version number?'
default: 'true'
outputs:
version:
description: 'The new version number that was released'
release_id:
description: 'The ID of the Release'
release_url:
description: 'The URL to view the published Release page in the GitHub UI'
runs:
using: 'node12'
main: 'lib/run.js'
branding:
icon: 'tag' # vector art to display in the GitHub Marketplace
color: 'orange' # decorates the entry in the GitHub Marketplace