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 98
98
run : |
99
99
mkdir -p ~/bin/
100
100
cd ~/bin/
101
- if [ $COVERAGE_REPORTER_VERSION = "latest" ]
101
+ if [ $COVERAGE_REPORTER_VERSION == "latest" ]
102
102
then
103
103
asset_path=latest/download
104
104
else
@@ -114,7 +114,7 @@ runs:
114
114
# Verify the downloaded binary
115
115
if ! grep coveralls-linux.tar.gz coveralls-checksums.txt | sha256sum --check; then
116
116
echo "Checksum verification failed."
117
- [ "${{ inputs.fail-on-error }}" = "false" ] && exit 0
117
+ [ "${{ inputs.fail-on-error }}" == "false" ] && exit 0
118
118
exit 1
119
119
fi
120
120
tar -xzf coveralls-linux.tar.gz
@@ -148,7 +148,7 @@ runs:
148
148
echo "Coveralls binary not found."
149
149
[ "${{ inputs.fail-on-error }}" == "false" ] && exit 0
150
150
exit 1
151
- fi
151
+ fi \
152
152
coveralls done
153
153
${{ inputs.debug == 'true' && '--debug' || '' }}
154
154
${{ inputs.measure == 'true' && '--measure' || '' }}
@@ -171,7 +171,7 @@ runs:
171
171
echo "Coveralls binary not found."
172
172
[ "${{ inputs.fail-on-error }}" == "false" ] && exit 0
173
173
exit 1
174
- fi
174
+ fi \
175
175
coveralls report
176
176
${{ inputs.debug == 'true' && '--debug' || '' }}
177
177
${{ inputs.measure == 'true' && '--measure' || '' }}
You can’t perform that action at this time.
0 commit comments