1
0
Fork 0
mirror of https://github.com/louislam/dockge.git synced 2025-04-04 23:42:20 +00:00

Try to fix crlf issue on Windows

This commit is contained in:
Louis Lam 2025-03-29 15:56:13 +08:00
parent 34c5fa37b9
commit bed3fe71f6

View file

@ -19,11 +19,11 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- name: Checkout Code
run: | # Mainly for Windows
git config --global core.autocrlf false
git config --global core.eol lf
uses: actions/checkout@v4
- run: git config --global core.autocrlf false # Mainly for Windows
- uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with: