File tree 4 files changed +9
-4
lines changed
4 files changed +9
-4
lines changed Original file line number Diff line number Diff line change
1
+ ## 1.1.6
2
+ ** Fixes**
3
+ - #81 Update bash script with best practices
4
+ - #82 Reduce the code in the orb to DRY
5
+
1
6
## 1.1.5
2
7
** Fixes**
3
8
- #78 Update validation regex and add shasum flexibility
Original file line number Diff line number Diff line change 1
1
# codecov-circleci-orb
2
2
3
- ## Latest version 1.1.4
3
+ ## Latest version 1.1.6
4
4
5
5
[ ![ codecov.io] ( https://codecov.io/github/codecov/codecov-circleci-orb/coverage.svg?branch=master )] ( https://codecov.io/github/codecov/codecov-circleci-orb )
6
6
[ ![ Circle CI] ( https://circleci.com/gh/codecov/codecov-circleci-orb.png?style=badge )] ( https://circleci.com/gh/codecov/codecov-circleci-orb )
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " codecov-circleci-orb" ,
3
- "version" : " 1.1.5 " ,
3
+ "version" : " 1.1.6 " ,
4
4
"description" : " Codecov CircleCI Orb" ,
5
5
"main" : " index.js" ,
6
6
"devDependencies" : {
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ commands:
40
40
steps :
41
41
- run :
42
42
name : Download Codecov Bash Uploader
43
- command : curl -s << parameters.url >> > codecov
43
+ command : curl -fLso codecov << parameters.url >>
44
44
when : << parameters.when >>
45
45
- when :
46
46
condition : << parameters.validate_url >>
@@ -52,7 +52,7 @@ commands:
52
52
for i in 1 256 512
53
53
do
54
54
shasum -a $i -c --ignore-missing <(curl -s https://raw.githubusercontent.com/codecov/codecov-bash/${VERSION}/SHA${i}SUM) ||
55
- shasum -a $i -c <(curl -s https://raw.githubusercontent.com/codecov/codecov-bash/${VERSION}/SHA${i}SUM)
55
+ shasum -a $i -c <(curl -s https://raw.githubusercontent.com/codecov/codecov-bash/${VERSION}/SHA${i}SUM | grep -w "codecov" )
56
56
done
57
57
- run :
58
58
name : Upload Coverage Results
You can’t perform that action at this time.
0 commit comments