-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.rmt.yml
30 lines (26 loc) · 841 Bytes
/
.rmt.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
_default:
# VCS CONFIG
vcs: git
# PREREQUISITES
# Actions executed before any questions get asked to the user.
# Custom action can be added by provided a relative path the the php script. Example:
# - relative/path/to/your-own-sript.php
prerequisites:
- working-copy-check
- display-last-changes
pre-release-actions:
update-version-class:
class: 'package.json'
pattern: '"version": "%version%"'
vcs-commit:
commit-message: '%version%'
version-generator: semantic
version-persister:
vcs-tag:
tag-prefix: 'v'
post-release-actions:
vcs-publish: # Publish the release to the VCS
ask-confirmation: true
command:
cmd: 'npm publish'
live-output: true