File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -164,12 +164,12 @@ runs:
164
164
if : inputs.parallel-finished == 'true'
165
165
shell : ${{ startsWith(runner.os, 'Windows') && 'pwsh' || 'bash' }}
166
166
run : |
167
- if [ ! -f coveralls ]; then
167
+ if [ ! -f ~/bin/ coveralls ]; then
168
168
echo "Coveralls binary not found."
169
169
[ "${{ inputs.fail-on-error }}" == "false" ] && exit 0
170
170
exit 1
171
171
fi
172
- coveralls done \
172
+ ~/bin/ coveralls done \
173
173
${{ inputs.debug == 'true' && '--debug' || '' }} \
174
174
${{ inputs.measure == 'true' && '--measure' || '' }} \
175
175
${{ inputs.fail-on-error == 'false' && '--no-fail' || '' }}
@@ -187,12 +187,12 @@ runs:
187
187
if : inputs.parallel-finished != 'true'
188
188
shell : ${{ startsWith(runner.os, 'Windows') && 'pwsh' || 'bash' }}
189
189
run : |
190
- if [ ! -f coveralls ]; then
190
+ if [ ! -f ~/bin/ coveralls ]; then
191
191
echo "Coveralls binary not found."
192
192
[ "${{ inputs.fail-on-error }}" == "false" ] && exit 0
193
193
exit 1
194
194
fi
195
- coveralls report \
195
+ ~/bin/ coveralls report \
196
196
${{ inputs.debug == 'true' && '--debug' || '' }} \
197
197
${{ inputs.measure == 'true' && '--measure' || '' }} \
198
198
${{ inputs.fail-on-error == 'false' && '--no-fail' || '' }} \
You can’t perform that action at this time.
0 commit comments