From 8b91b2eeb1085aa032937eae9d8fb6d90cb846cd Mon Sep 17 00:00:00 2001 From: Goooler Date: Mon, 13 Sep 2021 18:34:34 +0800 Subject: [PATCH] Chore: add .gitattributes (#1191) * Add .editorconfig * Add .gitattributes * Remove indent_style * Remove .editorconfig --- .gitattributes | 4 ++++ .github/workflows/build-unsigned.yaml | 4 +++- 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 00000000..411c0777 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,4 @@ +* text=auto eol=lf + +*.bat text eol=crlf +*.jar binary diff --git a/.github/workflows/build-unsigned.yaml b/.github/workflows/build-unsigned.yaml index 7e1a04fc..1758b63b 100644 --- a/.github/workflows/build-unsigned.yaml +++ b/.github/workflows/build-unsigned.yaml @@ -5,6 +5,7 @@ on: - main paths-ignore: - '.idea/**' + - '.gitattributes' - '.gitignore' - '.gitmodules' - '**.md' @@ -13,6 +14,7 @@ on: pull_request: paths-ignore: - '.idea/**' + - '.gitattributes' - '.gitignore' - '.gitmodules' - '**.md' @@ -36,4 +38,4 @@ jobs: with: go-version: 1.17 - name: Build - run: ./gradlew --no-daemon app:assembleFossRelease \ No newline at end of file + run: ./gradlew --no-daemon app:assembleFossRelease