-
Notifications
You must be signed in to change notification settings - Fork 0
/
.releaserc.yml
43 lines (43 loc) · 1.4 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
branches:
- main
repositoryUrl: "[email protected]:axone-protocol/ontology.git"
plugins:
- - "@semantic-release/commit-analyzer"
- preset: conventionalcommits
- - "@semantic-release/release-notes-generator"
- preset: conventionalcommits
- - "@semantic-release/changelog"
- changelogFile: CHANGELOG.md
changelogTitle: "# Axone Ontology Changelog"
- - "@google/semantic-release-replace-plugin"
- replacements:
- files: [version]
from: ^.+$
to: ${nextRelease.version}
countMatches: true
results:
- file: version
hasChanged: true
numMatches: 1
numReplacements: 1
- - "@semantic-release/exec"
- prepareCmd: make build
- - "@semantic-release/exec"
- prepareCmd: make docs
- - "@semantic-release/github"
- successComment: false
assets:
- label: Axone Ontology (Turtle)
path: ./target/axone-ontology-*.ttl
- label: Axone Ontology (RDF/XML)
path: ./target/axone-ontology-*.rdf.xml
- label: Axone Ontology (N-Triples)
path: ./target/axone-ontology-*.nt
- label: Axone Ontology Bundle
path: ./target/axone-ontology-*-bundle.tar.gz
- - "@semantic-release/git"
- assets:
- docs/schemas/*.md
- CHANGELOG.md
- version
message: "chore(release): perform release ${nextRelease.version}"