Skip to content

Commit abbd4ed

Browse files
committed
prepare for 2.6.3
1 parent eed73aa commit abbd4ed

File tree

1 file changed

+20
-9
lines changed

1 file changed

+20
-9
lines changed

bitrise.yml

Lines changed: 20 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
1-
format_version: 1.1.0
1+
format_version: 1.3.1
22
default_step_lib_source: https://github.com/bitrise-io/bitrise-steplib.git
33

44
app:
55
envs:
6-
- STEP_VERSION: 2.6.2
6+
- STEP_VERSION: 2.6.3
7+
78
# define these in your .bitrise.secrets.yml
89
- BITRISE_PROJECT_PATH: $BITRISE_PROJECT_PATH
910
- BITRISE_SCHEME: $BITRISE_SCHEME
@@ -43,22 +44,30 @@ workflows:
4344
- skip_screenshots: "no"
4445

4546
# ----------------------------------------------------------------
46-
# --- workflow to Release Version
47-
create-release-version:
48-
envs:
49-
- RELEASE_VERSION: $STEP_VERSION
47+
# --- workflows to create Release
48+
create-release:
5049
steps:
5150
- script:
5251
title:
5352
inputs:
5453
- content: |
5554
#!/bin/bash
56-
set -ex
55+
set -e
56+
5757
export CI=true
58-
releaseman create --version $RELEASE_VERSION
58+
releaseman create --version $STEP_VERSION
5959
6060
# ----------------------------------------------------------------
61-
# --- workflow to Share this step into a Step Library
61+
# --- workflows to Share this step into a Step Library
62+
audit-this-step:
63+
steps:
64+
- script:
65+
inputs:
66+
- content: |-
67+
#!/bin/bash
68+
set -ex
69+
stepman audit --step-yml ./step.yml
70+
6271
share-this-step:
6372
envs:
6473
# if you want to share this step into a StepLib
@@ -87,6 +96,8 @@ workflows:
8796
8897
Once it finishes the only thing left is to actually create a Pull Request,
8998
the way described in the guide printed at the end of the process.
99+
before_run:
100+
- audit-this-step
90101
steps:
91102
- script:
92103
inputs:

0 commit comments

Comments
 (0)