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 cfe718e commit 86008baCopy full SHA for 86008ba
.github/workflows/release-binaries.yml
@@ -232,6 +232,12 @@ jobs:
232
runs-on: ${{ needs.prepare.outputs.build-runs-on }}
233
steps:
234
235
+ # See https://llvm.org/docs/GettingStarted.html#id4
236
+ - name: Disable autocrlf for git on Windows
237
+ if: runner.os == 'Windows'
238
+ run: |
239
+ git config --global core.autocrlf false
240
+
241
- name: Checkout LLVM
242
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
243
with:
0 commit comments