From 7ba22abba8418a606f3d6bd061c7cc1b84465ded Mon Sep 17 00:00:00 2001 From: Brad <75509403+bradstv@users.noreply.github.com> Date: Tue, 11 Jun 2024 00:02:11 -0400 Subject: [PATCH] fix line endings for data files --- .github/workflows/build.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 67086b7..336bfd5 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -24,6 +24,11 @@ jobs: #- Debug - Release steps: + - name: Set Git to use LF line endings + run: | + git config --global core.autocrlf false + git config --global core.eol lf + - name: Check out files uses: actions/checkout@v3.5.2 with: