File tree Expand file tree Collapse file tree 2 files changed +39
-0
lines changed
Expand file tree Collapse file tree 2 files changed +39
-0
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 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"}}'
You can’t perform that action at this time.
0 commit comments