From 236c9d3cacea5da685b86719b00482a0138e9971 Mon Sep 17 00:00:00 2001 From: Grant Limberg Date: Wed, 1 Mar 2023 15:42:56 -0800 Subject: [PATCH] set autocrlf settings --- .github/workflows/build.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 35f973e41..8755cb210 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -4,9 +4,9 @@ jobs: build_ubuntu: runs-on: ubuntu-latest steps: - # - name: gitconfig - # run: | - # git config --global core.autocrlf false + - name: gitconfig + run: | + git config --global core.autocrlf input # git config --global core.eol lf - name: checkout uses: actions/checkout@v3 @@ -40,9 +40,9 @@ jobs: build_macos: runs-on: macos-latest steps: - # - name: gitconfig - # run: | - # git config --global core.autocrlf false + - name: gitconfig + run: | + git config --global core.autocrlf input # git config --global core.eol lf - name: checkout uses: actions/checkout@v3 @@ -75,9 +75,9 @@ jobs: build_windows: runs-on: windows-latest steps: - # - name: gitconfig - # run: | - # git config --global core.autocrlf false + - name: gitconfig + run: | + git config --global core.autocrlf true # git config --global core.eol lf - name: checkout uses: actions/checkout@v3