From 65c44ccc678233adba80543c7a7f4bd6cd00d176 Mon Sep 17 00:00:00 2001 From: Denis Bilenko Date: Tue, 28 Jan 2025 16:57:10 +0100 Subject: [PATCH] Disable autocrlf on github --- .github/workflows/push.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index 2a8a68862..0db4e33e8 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -44,6 +44,10 @@ jobs: - windows-latest steps: + # See https://github.com/actions/checkout/issues/226 + - name: Prepare git - disable autocrlf + run: git config --global core.autocrlf false + - name: Checkout repository and submodules uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2