We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9928623 commit 6686950Copy full SHA for 6686950
.github/workflows/download.yml
@@ -58,8 +58,10 @@ jobs:
58
59
- name: Create diff to mx version
60
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
+ set -e
+ 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
65
66
- name: Check if there are changes
67
0 commit comments