This commit is contained in:
Schnitzel5 2025-07-18 21:58:27 +02:00
parent 7cc0d9e3b2
commit 2ce3b8a194

View file

@ -88,6 +88,11 @@ jobs:
contents: write
runs-on: macos-latest
steps:
- name: Set git to use LF
run: |
git config --global core.autocrlf false
git config --global core.eol lf
# Checkout branch
- name: Checkout repository
uses: actions/checkout@v4
@ -149,6 +154,11 @@ jobs:
contents: write
runs-on: macos-latest
steps:
- name: Set git to use LF
run: |
git config --global core.autocrlf false
git config --global core.eol lf
- name: checkout branch
uses: actions/checkout@v4
@ -252,6 +262,11 @@ jobs:
contents: write
runs-on: ubuntu-latest
steps:
- name: Set git to use LF
run: |
git config --global core.autocrlf false
git config --global core.eol lf
- name: checkout branch
uses: actions/checkout@v4
@ -381,6 +396,11 @@ jobs:
contents: write
runs-on: ubuntu-latest
steps:
- name: Set git to use LF
run: |
git config --global core.autocrlf false
git config --global core.eol lf
- name: checkout branch
uses: actions/checkout@v4