File tree 2 files changed +23
-0
lines changed
2 files changed +23
-0
lines changed Original file line number Diff line number Diff line change @@ -96,10 +96,31 @@ workflows:
96
96
- not : << pipeline.parameters.success-flag >>
97
97
- not : << pipeline.parameters.validation-flag >>
98
98
jobs :
99
+ - toolkit/save_next_version :
100
+ min_rust_version : << pipeline.parameters.min-rust-version >>
101
+
99
102
- toolkit/make_release :
100
103
context :
101
104
- release
102
105
- bot-check
106
+ requires :
107
+ - toolkit/save_next_version
108
+ pre-steps :
109
+ - attach_workspace :
110
+ at : /tmp/workspace
111
+ - run :
112
+ name : Set SEMVER based on next-version file
113
+ command : |
114
+ set +ex
115
+ export SEMVER=$(cat /tmp/workspace/next-version)
116
+ echo $SEMVER
117
+ echo "export SEMVER=$SEMVER" >> "$BASH_ENV"
103
118
ssh_fingerprint : << pipeline.parameters.fingerprint >>
104
119
min_rust_version : << pipeline.parameters.min-rust-version >>
105
120
when_use_workspace : false
121
+
122
+ - toolkit/no_release :
123
+ min_rust_version : << pipeline.parameters.min-rust-version >>
124
+ requires :
125
+ - toolkit/save_next_version
126
+ - failed
Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
11
11
12
12
- ci(circleci)-update configuration with new parameter(pr [ #75 ] )
13
13
- chore(config)-migrate renovate config(pr [ #78 ] )
14
+ - 👷 ci(circleci): update CI workflow with version management(pr [ #79 ] )
14
15
15
16
### Security
16
17
@@ -224,6 +225,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
224
225
[ #76 ] : https://github.com/jerus-org/lambda_sqs/pull/76
225
226
[ #77 ] : https://github.com/jerus-org/lambda_sqs/pull/77
226
227
[ #78 ] : https://github.com/jerus-org/lambda_sqs/pull/78
228
+ [ #79 ] : https://github.com/jerus-org/lambda_sqs/pull/79
227
229
[ Unreleased ] : https://github.com/jerus-org/lambda_sqs/compare/v0.2.20...HEAD
228
230
[ 0.2.20 ] : https://github.com/jerus-org/lambda_sqs/compare/v0.2.19...v0.2.20
229
231
[ 0.2.19 ] : https://github.com/jerus-org/lambda_sqs/compare/v0.2.18...v0.2.19
You can’t perform that action at this time.
0 commit comments