ci: ignore return code of diff

diff returns a 1 error code if diffs are found which halts the script, but we don't consider this an error, we're just interested in the information
This commit is contained in:
itsmattkc 2023-06-27 19:08:43 -07:00
parent 706be168af
commit aaf61ba48e

View file

@ -71,8 +71,8 @@ jobs:
curl -fLSs -o ISLEPROGRESS-OLD.TXT https://github.com/isledecomp/isle/releases/download/continuous/ISLEPROGRESS.TXT
curl -fLSs -o LEGO1PROGRESS-OLD.TXT https://github.com/isledecomp/isle/releases/download/continuous/LEGO1PROGRESS.TXT
diff -u ISLEPROGRESS-OLD.TXT ISLEPROGRESS.TXT
diff -u LEGO1PROGRESS-OLD.TXT LEGO1PROGRESS.TXT
diff -u ISLEPROGRESS-OLD.TXT ISLEPROGRESS.TXT || true
diff -u LEGO1PROGRESS-OLD.TXT LEGO1PROGRESS.TXT || true
- name: Upload Artifact
uses: actions/upload-artifact@master