Welcome to mirror list, hosted at ThFree Co, Russian Federation.

NesTiler.git/NesTiler.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2022-10-14 23:00:38 +0300
committerAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2022-10-14 23:02:03 +0300
commit9f092ac97144800b44173e715bfc48cc46bab9fa (patch)
treed535e21d9dc0daefc45a5dcb0fc1a38e7b4db77a /.github
parent06cc03c970c43a5766e20b08edc881d69e0ba4dc (diff)
Keep line endings!
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build-test.yml4
-rw-r--r--.github/workflows/release.yml4
-rw-r--r--.github/workflows/tests.yml4
3 files changed, 6 insertions, 6 deletions
diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml
index f4f81c5..65f59a0 100644
--- a/.github/workflows/build-test.yml
+++ b/.github/workflows/build-test.yml
@@ -30,10 +30,10 @@ jobs:
CONFIGURATION: Release
OUTPUT_SUBDIR: ${{ matrix.os }}-${{ matrix.arch }}-${{ matrix.sc }}
steps:
+ - name: Fix line endings
+ run: git config --global core.autocrlf false
- name: Checkout
uses: actions/checkout@v2
- - name: Checkout submodules
- run: git submodule update --init --recursive
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 711d910..df5d796 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -48,10 +48,10 @@ jobs:
- os: osx
arch: arm
steps:
+ - name: Fix line endings
+ run: git config --global core.autocrlf false
- name: Checkout
uses: actions/checkout@v2
- - name: Checkout submodules
- run: git submodule update --init --recursive
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml
index a235541..d7ed11e 100644
--- a/.github/workflows/tests.yml
+++ b/.github/workflows/tests.yml
@@ -18,10 +18,10 @@ jobs:
CONFIGURATION: Release
TESTS_CONFIGURATION: Debug
steps:
+ - name: Fix line endings
+ run: git config --global core.autocrlf false
- name: Checkout
uses: actions/checkout@v2
- - name: Checkout submodules
- run: git submodule update --init --recursive
- name: Setup .NET
uses: actions/setup-dotnet@v1
with: