diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml
index 8833be296..3e81ba0d0 100644
--- a/.github/workflows/maven.yml
+++ b/.github/workflows/maven.yml
@@ -10,7 +10,7 @@ on:
branches: [ master ]
jobs:
- build:
+ build-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
@@ -25,5 +25,22 @@ jobs:
- name: Upload Linux x64 build
uses: actions/upload-artifact@v2
with:
- name: linux-x64-build
+ name: minosoft-linux-x64
+ path: target/Minosoft-*.jar
+ build-windows:
+ runs-on: windows-latest
+ steps:
+ - uses: actions/checkout@v2
+ - name: Set up JDK 11
+ uses: actions/setup-java@v2
+ with:
+ java-version: '11'
+ distribution: 'adopt'
+ cache: maven
+ - name: Build with Maven
+ run: mvn -B package --file pom.xml
+ - name: Upload Windows x64 build
+ uses: actions/upload-artifact@v2
+ with:
+ name: minosoft-win64
path: target/Minosoft-*.jar
diff --git a/ReadMe.md b/ReadMe.md
index f0ef5d81b..cb5a3ba05 100644
--- a/ReadMe.md
+++ b/ReadMe.md
@@ -4,7 +4,7 @@
Minosoft is an open source minecraft client, written from scratch in kotlin (and java). It aims to bring more functionality and stability.
-(To be clear: This is not clone of minecraft, you can see it more like a fork or even better as a reimplementation)
+(To be clear: This is not clone of minecraft, it is a reimplementation)