Skip to content

Commit 6686950

Browse files
committed
fix ci
1 parent 9928623 commit 6686950

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/download.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,10 @@ jobs:
5858
5959
- name: Create diff to mx version
6060
run: |
61-
git diff --output=alt_js.diff application.js application.js.alt
62-
git diff --output=alt_css.diff application.css application.css.alt
61+
set -e
62+
git --no-pager diff --no-index application.js application.js.alt | tee alt_js.diff || true
63+
git --no-pager diff --no-index application.css application.css.alt |tee alt_css.diff || true
64+
exit 0
6365
6466
- name: Check if there are changes
6567
run: |

0 commit comments

Comments
 (0)