Skip to content

Commit cd340cf

Browse files
author
Krisztián Gödrei
committed
release config added
1 parent caf3831 commit cd340cf

File tree

2 files changed

+39
-0
lines changed

2 files changed

+39
-0
lines changed

bitrise.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,32 @@ workflows:
4747
echo "-> BITRISE_IPA_PATH: ${BITRISE_IPA_PATH}"
4848
echo "-> BITRISE_DSYM_PATH: ${BITRISE_DSYM_PATH}"
4949
50+
create-release:
51+
steps:
52+
- script:
53+
title:
54+
inputs:
55+
- content: |
56+
#!/bin/bash
57+
set -e
58+
59+
export CI=true
60+
releaseman create --bump-version patch
61+
62+
create-release-version:
63+
envs:
64+
- RELEASE_VERSION: 1.6.1
65+
steps:
66+
- script:
67+
title:
68+
inputs:
69+
- content: |
70+
#!/bin/bash
71+
set -e
72+
73+
export CI=true
74+
releaseman create --version $RELEASE_VERSION
75+
5076
5177
# ----------------------------------------------------------------
5278
# --- workflows to Share this step into a Step Library

release_config.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
release:
2+
development_branch: master
3+
release_branch: master
4+
changelog:
5+
path: CHANGELOG.md
6+
content_template: |-
7+
{{range .ContentItems}}### {{.EndTaggedCommit.Tag}} ({{.EndTaggedCommit.Date.Format "2006 Jan 02"}})
8+
9+
{{range .Commits}}* [{{firstChars .Hash 7}}] {{.Message}}
10+
{{end}}
11+
{{end}}
12+
header_template: '## Changelog (Current version: {{.Version}})'
13+
footer_template: 'Updated: {{.CurrentDate.Format "2006 Jan 02"}}'

0 commit comments

Comments
 (0)