-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathaction.yml
More file actions
26 lines (26 loc) · 812 Bytes
/
action.yml
File metadata and controls
26 lines (26 loc) · 812 Bytes
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
name: 'VisualPinball.NextReleaseAction'
description: 'Action used for determining the next version of VisualPinball.* projects.'
author: 'Jason Millard <jsm174@gmail.com>'
inputs:
path:
required: false
description: 'Path to folder containing package.json'
tagPrefix:
required: false
description: 'Prefix when tagging the release'
outputs:
version:
description: 'Version in package.json'
tags:
description: 'Git tags in semver format'
nextVersion:
description: 'Computed next version'
nextTag:
description: 'Computed next version with prefix'
isBump:
description: 'If true, the computed next version differs from the version in package.json'
isPrerelease:
description: 'If true, the version is a pre-release'
runs:
using: 'node12'
main: 'dist/index.js'