-
Notifications
You must be signed in to change notification settings - Fork 0
/
.releaserc.yml
90 lines (86 loc) · 2.33 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
branches: ['main']
ci: true
debug: true
tagFormat: 'v${version}'
preset: 'conventionalcommits'
analyzeCommits:
- path: '@semantic-release/commit-analyzer'
releaseRules:
- breaking: true
release: minor # Because we are in initial development
- type: build
release: patch
- type: chore
release: false
- type: ci
release: false
- type: docs
release: false
- type: feat
release: patch
- type: fix
release: patch
- type: perf
release: patch
- type: refactor
release: false
- type: revert
release: patch
- type: style
release: false
- type: test
release: false
generateNotes:
- path: '@semantic-release/release-notes-generator'
writerOpts:
groupBy: 'type'
commitGroupsSort: 'title'
commitsSort: 'header'
linkCompare: true
linkReferences: true
presetConfig:
types:
- type: 'build'
section: '🦊 CI/CD'
hidden: false
- type: 'chore'
section: 'Other'
hidden: false
- type: 'ci'
section: '🦊 CI/CD'
hidden: false
- type: 'docs'
section: '📔 Docs'
hidden: false
- type: 'example'
section: '📝 Examples'
hidden: false
- type: 'feat'
section: '🚀 Features'
hidden: false
- type: 'fix'
section: '🛠 Fixes'
hidden: false
- type: 'perf'
section: '⏩ Performance'
- type: 'refactor'
section: ':scissors: Refactor'
hidden: false
- type: 'revert'
section: '🙅♂️ Reverts'
- type: 'style'
section: '💈 Style'
- type: 'test'
section: '🧪 Tests'
hidden: false
prepare:
- path: '@semantic-release/exec'
shell: pwsh
cmd: './Update-FunctionsToExport.ps1'
- path: '@semantic-release/exec'
shell: pwsh
cmd: './Update-ModuleVersion.ps1 -Version ${nextRelease.version}'
- path: '@semantic-release/changelog'
- path: '@semantic-release/git'
message: 'RELEASE: ${nextRelease.version}'
assets: ['CHANGELOG.md', 'src/TcPrjMgmt/TcPrjMgmt.psd1']