-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.releaserc.yaml
44 lines (44 loc) · 1.25 KB
/
.releaserc.yaml
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
debug: true
tagFormat: v${version}
verifyConditions: "@semantic-release/github"
analyzeCommits: "@semantic-release/commit-analyzer"
generateNotes: false
prepare:
publish: "@semantic-release/github"
success: false
fail: false
branches:
- main
plugins:
- - "@semantic-release/commit-analyzer"
- releaseRules:
- type: chore
release: patch
- type: null
release: patch
- type: docs
release: patch
- type: minor
release: minor
- type: feat
release: minor
- type: major
release: major
- "@semantic-release/release-notes-generator"
- "@semantic-release/github"
- - "@google/semantic-release-replace-plugin"
- replacements:
- files: "chart/kube-ephemeral-storage-exporter/Chart.yaml"
allowEmptyPaths: false
disableGlobs: false
from: "^appVersion: .*"
to: "appVersion: ${nextRelease.version}"
- files: "chart/kube-ephemeral-storage-exporter/Chart.yaml"
allowEmptyPaths: false
disableGlobs: false
from: "^version: .*"
to: "version: ${nextRelease.version}"
- - "@semantic-release/git"
- message: "Release new version: ${nextRelease.version} [skip ci]"
assets:
- "chart/kube-ephemeral-storage-exporter/Chart.yaml"