From 5ec8a635a7548776636d40e15e58d618278e6ff6 Mon Sep 17 00:00:00 2001 From: Jason Penilla <11360596+jpenilla@users.noreply.github.com> Date: Wed, 22 May 2024 16:19:46 -0700 Subject: [PATCH] Add actions workflow --- .gitattributes | 5 +++++ .github/workflows/build.yml | 15 +++++++++++++++ gradlew | 0 3 files changed, 20 insertions(+) create mode 100644 .gitattributes create mode 100644 .github/workflows/build.yml mode change 100644 => 100755 gradlew diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 00000000..022b8414 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,5 @@ +# +# https://help.github.com/articles/dealing-with-line-endings/ +# +# These are explicitly windows files and should use crlf +*.bat text eol=crlf diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 00000000..3d9a1358 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,15 @@ +name: "build" + +on: + push: + branches: [ "**" ] + tags-ignore: [ "**" ] + pull_request: + +jobs: + call-build: + uses: "jpenilla/actions/.github/workflows/shared-ci.yml@master" + with: + artifacts-path: 'build/libs/*.jar' + loom: true + jdk-version: 21 diff --git a/gradlew b/gradlew old mode 100644 new mode 100755