-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
28 lines (28 loc) · 944 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
name: 'release-it tagger action'
description: 'Given a repo with a valid VERSION file, increment the version based on calver standards.'
inputs:
build:
description: 'Command to pass to build the project. Warning, this will commit the build to the repository!'
required: false
github-release:
description: 'Used to create a tag on github'
default: 'false'
required: false
github-ref:
description: 'Github branch used to check for the correct pre-release tag'
required: false
dev-branch:
description: 'Github branch associated with the development environment'
required: false
stage-branch:
description: 'Github branch associated with the stage environment'
required: false
prod-branch:
description: 'Github branch associated with the production environment'
required: false
outputs:
version:
description: 'The updated version'
runs:
using: 'node16'
main: 'dist/index.js'