forked from bitrise-io/bitrise-workflow-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
release_config.yml
43 lines (30 loc) · 1.12 KB
/
release_config.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
release:
development_branch: master
release_branch: master
changelog:
path: CHANGELOG.md
content_template: |-
{{range .ContentItems}}## {{.EndTaggedCommit.Tag}} ({{.EndTaggedCommit.Date.Format "2006 Jan 02"}})
### Release Notes
{{range .Commits}}* {{.Message}}
{{end}}
### Install or upgrade
To install this version, run the following commands (in a bash shell):
```
bitrise plugin install --source https://github.com/bitrise-io/bitrise-workflow-editor.git --version {{.EndTaggedCommit.Tag}}
```
To update the already installed plugin to the latest version:
```
bitrise plugin update workflow-editor
```
That's all, you're ready to go!
To run the workflow editor plugin call:
```
bitrise :workflow-editor
```
### Release Commits - {{.StartTaggedCommit.Tag}} -> {{.EndTaggedCommit.Tag}}
{{range .Commits}}* [{{firstChars .Hash 7}}] {{.Author}} - {{.Message}} ({{.Date.Format "2006 Jan 02"}})
{{end}}
{{end}}
header_template: '## Changelog (Current version: {{.Version}})'
footer_template: 'Updated: {{.CurrentDate.Format "2006 Jan 02"}}'