We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 25b53a7 commit 6142e23Copy full SHA for 6142e23
1 file changed
.github/workflows/reusable-test-core-build-process.yml
@@ -69,6 +69,14 @@ jobs:
69
timeout-minutes: 20
70
71
steps:
72
+ # Windows converts LF to CRLF on checkout. This makes every built file appear as modified because the build output
73
+ # will be CRLF.
74
+ - name: Configure Git line endings on Windows
75
+ if: ${{ contains( inputs.os, 'windows-' ) }}
76
+ run: |
77
+ git config --global core.autocrlf false
78
+ git config --global core.eol lf
79
+
80
- name: Checkout repository
81
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
82
with:
0 commit comments