Skip to content

Commit

Permalink
release configs
Browse files Browse the repository at this point in the history
  • Loading branch information
Krisztián Gödrei committed Jul 27, 2016
1 parent ff5c951 commit 6ee2c5c
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 0 deletions.
27 changes: 27 additions & 0 deletions bitrise.yml
Expand Up @@ -56,6 +56,33 @@ workflows:
inputs:
- project_path: $PROJECT_PATH

# ----------------------------------------------------------------
# --- workflows to create Release
create-release:
steps:
- script:
title:
inputs:
- content: |
#!/bin/bash
set -e
export CI=true
releaseman create --bump-version patch
create-release-version:
envs:
- RELEASE_VERSION: 0.9.0
steps:
- script:
title:
inputs:
- content: |
#!/bin/bash
set -e
export CI=true
releaseman create --version $RELEASE_VERSION
# ----------------------------------------------------------------
# --- workflows to Share this step into a Step Library
Expand Down
13 changes: 13 additions & 0 deletions release_config.yml
@@ -0,0 +1,13 @@
release:
development_branch: master
release_branch: master
changelog:
path: CHANGELOG.md
content_template: |-
{{range .ContentItems}}### {{.EndTaggedCommit.Tag}} ({{.EndTaggedCommit.Date.Format "2006 Jan 02"}})
{{range .Commits}}* [{{firstChars .Hash 7}}] {{.Message}}
{{end}}
{{end}}
header_template: '## Changelog (Current version: {{.Version}})'
footer_template: 'Updated: {{.CurrentDate.Format "2006 Jan 02"}}'

0 comments on commit 6ee2c5c

Please sign in to comment.