Skip to content

Commit

Permalink
relelase configs
Browse files Browse the repository at this point in the history
  • Loading branch information
Krisztián Gödrei committed Jun 1, 2016
1 parent 28b168a commit 39c4f21
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 2 deletions.
33 changes: 31 additions & 2 deletions bitrise.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ app:
- BITRISE_KEYCHAIN_PASSWORD: $BITRISE_KEYCHAIN_PASSWORD

workflows:
# ----------------------------------------------------------------
# --- workflow to Step Test
test:
steps:
- change-workdir:
Expand All @@ -32,15 +34,42 @@ workflows:
- keychain_path: $HOME/Library/Keychains/login.keychain
- keychain_password: $BITRISE_KEYCHAIN_PASSWORD

# ----------------------------------------------------------------
# --- 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: 1.5.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
# --- workflow to Share this step into a Step Library
share-this-step:
envs:
# if you want to share this step into a StepLib
- MY_STEPLIB_REPO_FORK_GIT_URL: $MY_STEPLIB_REPO_FORK_GIT_URL
- STEP_ID_IN_STEPLIB: certificate-and-profile-installer
- STEP_GIT_VERION_TAG_TO_SHARE: 1.4.2
- STEP_GIT_VERION_TAG_TO_SHARE: 1.5.0
- STEP_GIT_CLONE_URL: https://github.com/bitrise-io/steps-certificate-and-profile-installer.git
description: |-
If this is the first time you try to share a Step you should
Expand Down
13 changes: 13 additions & 0 deletions release_config.yml
Original file line number Diff line number Diff line change
@@ -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 39c4f21

Please sign in to comment.