fix the limit test
This commit is contained in:
parent
0803d21e2e
commit
000e4c991f
1 changed files with 1 additions and 1 deletions
2
.github/workflows/update.yml
vendored
2
.github/workflows/update.yml
vendored
|
@ -33,7 +33,7 @@ jobs:
|
|||
echo "</details>" >> report
|
||||
done
|
||||
|
||||
if [ $(wc -c report) -gt 131072 ]; then
|
||||
if [ "$(wc -c report | awk '{print $1}')" -gt 131072 ]; then
|
||||
mv report report-artifact.txt
|
||||
echo "Difference is too large for github. Please check the artifact" > report
|
||||
echo ::set-output name=artifact::report-artifact.txt
|
||||
|
|
Loading…
Reference in a new issue