Skip to content

Commit

Permalink
prepare for 1.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
godrei committed Jun 9, 2017
1 parent d577772 commit 80163fc
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 3 deletions.
31 changes: 28 additions & 3 deletions bitrise.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
format_version: 1.2.0
format_version: "2"
default_step_lib_source: https://github.com/bitrise-io/bitrise-steplib.git

app:
envs:
- STEP_VERSION: 1.1.4

- IS_DEBUG: "no"
# set these in your .bitrise.secrets.yml
# set this to "yes" to run the Swift test
- IS_RUN_SWIFT_TEST: $IS_RUN_SWIFT_TEST
#
- STEP_VERSION: 1.1.3

workflows:
test:
Expand Down Expand Up @@ -64,9 +65,31 @@ workflows:
- script_file_path: main.go
- is_debug: $IS_DEBUG
# ----------------------------------------------------------------
# --- workflows to create Release
create-release:
steps:
- script:
title:
inputs:
- content: |
#!/bin/bash
set -e
export CI=true
releaseman create --version $STEP_VERSION
# ----------------------------------------------------------------
# --- workflows to Share this step into a Step Library
# --- workflow to Share this step into a Step Library
audit-this-step:
steps:
- script:
inputs:
- content: |-
#!/bin/bash
set -ex
stepman audit --step-yml ./step.yml
share-this-step:
envs:
# if you want to share this step into a StepLib
Expand Down Expand Up @@ -95,6 +118,8 @@ workflows:
Once it finishes the only thing left is to actually create a Pull Request,
the way described in the guide printed at the end of the process.
before_run:
- audit-this-step
steps:
- script:
inputs:
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 80163fc

Please sign in to comment.