Commit ca2a9dd 1 parent 045a251 commit ca2a9dd Copy full SHA for ca2a9dd
File tree 1 file changed +12
-2
lines changed
1 file changed +12
-2
lines changed Original file line number Diff line number Diff line change @@ -76,15 +76,25 @@ runs:
76
76
shell : bash
77
77
run : |
78
78
mkdir -p ~/bin/
79
- curl -sL https://github.com/coverallsapp/coverage-reporter/releases/latest/download/coveralls-linux.tar.gz | tar xz -C ~/bin
79
+ cd ~/bin/
80
+ curl -sLO https://github.com/coverallsapp/coverage-reporter/releases/latest/download/coveralls-linux.tar.gz
81
+ curl -sLO https://github.com/coverallsapp/coverage-reporter/releases/latest/download/coveralls-checksums.txt
82
+ cat coveralls-checksums.txt | grep coveralls-linux.tar.gz | sha256sum --check
83
+ tar -xzf coveralls-linux.tar.gz
84
+ rm coveralls-checksums.txt
80
85
echo ~/bin >> $GITHUB_PATH
81
86
82
87
- name : Install coveralls reporter (Windows)
83
88
if : startsWith(runner.os, 'Windows')
84
89
shell : bash
85
90
run : |
86
91
mkdir -p ~/bin/
87
- curl -sL https://github.com/coverallsapp/coverage-reporter/releases/latest/download/coveralls-windows.zip | zcat > ~/bin/coveralls.exe
92
+ cd ~/bin/
93
+ curl -sLO https://github.com/coverallsapp/coverage-reporter/releases/latest/download/coveralls-windows.zip
94
+ curl -sLO https://github.com/coverallsapp/coverage-reporter/releases/latest/download/coveralls-checksums.txt
95
+ cat coveralls-checksums.txt | grep coveralls-windows.zip | sha256sum --check
96
+ zcat coveralls-windows.zip > coveralls.exe
97
+ rm coveralls-checksums.txt
88
98
echo ~/bin >> $GITHUB_PATH
89
99
90
100
- name : Done report
You can’t perform that action at this time.
0 commit comments