-
Notifications
You must be signed in to change notification settings - Fork 9
/
.releaserc.yml
60 lines (57 loc) · 1.71 KB
/
.releaserc.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
branches:
- main
plugins:
- '@semantic-release/commit-analyzer'
- - '@semantic-release/release-notes-generator'
- preset: conventionalcommits
writerOpts:
commitPartial: |
- {{#if scope}} **{{scope}}:**
{{~/if}} {{#if subject}}
{{~subject}}
{{~else}}
{{~header}}
{{~/if}}
{{~!-- commit link --}}{{~#if hash}} {{#if @root.linkReferences~}}
([{{shortHash}}]({{commitUrlFormat}}))
{{~else}}
{{~shortHash}}
{{~/if}}{{~/if}}
{{~!-- commit references --}}
{{~#if references~}}
, closes
{{~#each references}} {{#if @root.linkReferences~}}
[
{{~#if this.owner}}
{{~this.owner}}/
{{~/if}}
{{~this.repository}}{{this.prefix}}{{this.issue}}]({{issueUrlFormat}})
{{~else}}
{{~#if this.owner}}
{{~this.owner}}/
{{~/if}}
{{~this.repository}}{{this.prefix}}{{this.issue}}
{{~/if}}{{/each}}
{{~/if}}
- - '@semantic-release/changelog'
- changelogTitle: AppMap Plugin Changelog
- - '@google/semantic-release-replace-plugin'
- replacements:
- files: [gradle.properties]
from: (?<=^pluginVersion=).*
to: ${nextRelease.version}
countMatches: true
results:
- file: gradle.properties
hasChanged: true
numMatches: 1
numReplacements: 1
- - '@semantic-release/git'
- assets:
- CHANGELOG.md
- gradle.properties
- - '@semantic-release/exec'
- publishCmd: ./gradlew clean build verifyPlugin -x test -x testAgent
- - '@semantic-release/github'
- assets:
- build/distributions/intellij-appmap-*.zip