We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a6db77a commit f656bbbCopy full SHA for f656bbb
action.yml
@@ -98,7 +98,7 @@ runs:
98
run: |
99
mkdir -p ~/bin/
100
cd ~/bin/
101
- if [ $COVERAGE_REPORTER_VERSION == "latest" ]
+ if [ $COVERAGE_REPORTER_VERSION = "latest" ]
102
then
103
asset_path=latest/download
104
else
@@ -114,7 +114,7 @@ runs:
114
# Verify the downloaded binary
115
if ! grep coveralls-linux.tar.gz coveralls-checksums.txt | sha256sum --check; then
116
echo "Checksum verification failed."
117
- [ "${{ inputs.fail-on-error }}" == "false" ] && exit 0
+ [ "${{ inputs.fail-on-error }}" = "false" ] && exit 0
118
exit 1
119
fi
120
tar -xzf coveralls-linux.tar.gz
0 commit comments