From 2c7822ef821cfffebfad5b3f0a8c12c8e1fe9818 Mon Sep 17 00:00:00 2001 From: Stijn Bannink <27051051+stijnb1234@users.noreply.github.com> Date: Sat, 18 Apr 2020 09:02:12 +0200 Subject: [PATCH 1/2] Create README.md --- README.md | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..1cf31f0 --- /dev/null +++ b/README.md @@ -0,0 +1,4 @@ +# ThemeParkPlus + +The recode of ThemeParkPlus! +Support 1.9 t/m 1.15. From 739cd12e5bdac29f308fbaaa70bec1d7f37e8060 Mon Sep 17 00:00:00 2001 From: Stijn Bannink <27051051+stijnb1234@users.noreply.github.com> Date: Sat, 18 Apr 2020 09:03:05 +0200 Subject: [PATCH 2/2] Create maven.yml --- .github/workflows/maven.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/maven.yml diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml new file mode 100644 index 0000000..56e7a40 --- /dev/null +++ b/.github/workflows/maven.yml @@ -0,0 +1,23 @@ +name: Java CI + +on: [push] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v1 + - name: Set up JDK 1.8 + uses: actions/setup-java@v1 + with: + java-version: 1.8 + - name: Build with Maven + run: mvn -B package --file pom.xml + - run: mkdir -p target + + - uses: actions/upload-artifact@master + with: + name: themeparkplus + path: target