forked from bitrise-io/bitrise
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrelease_config.yml
41 lines (29 loc) · 1.21 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
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
* __BREAKING__ : change 1
* change 2
### Install or upgrade
To install this version, run the following commands (in a bash shell):
```
curl -fL https://github.com/bitrise-io/bitrise/releases/download/{{.EndTaggedCommit.Tag}}/bitrise-$(uname -s)-$(uname -m) > /usr/local/bin/bitrise
```
Then:
```
chmod +x /usr/local/bin/bitrise
```
That's all, you're ready to go!
Optionally, you can call `bitrise setup` to verify that everything what's required for bitrise to run
is installed and available, but if you forget to do this it'll be performed the first
time you call bitrise run.
### 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"}}'