diff --git a/.github/workflows/Build.yml b/.github/workflows/Build.yml index 23772b0..f0c73b9 100644 --- a/.github/workflows/Build.yml +++ b/.github/workflows/Build.yml @@ -83,105 +83,11 @@ jobs: name: outputs path: outputs - build_on_java16: - # for minecraft 1.17+ - runs-on: ubuntu-latest - strategy: - matrix: - ver: - - '1.17.1' - - '1.17' - env: - ver: ${{ matrix.ver }} - - steps: - - name: Setup java - uses: actions/setup-java@v2 - with: - distribution: "adopt" - java-version: "16" - - - name: Download BuildTools.jar - run: wget https://hub.spigotmc.org/jenkins/job/BuildTools/lastSuccessfulBuild/artifact/target/BuildTools.jar - - - run: mkdir ./outputs - - - name: Build Jars - # if: ${{ matrix.ver != env.latest }} - continue-on-error: true - run: java -jar BuildTools.jar --rev $ver --output-dir ./outputs - - - name: Upload artifact - uses: actions/upload-artifact@v2 - with: - name: outputs - path: outputs - - build_on_java8: - # for minecraft 1.17+ - runs-on: ubuntu-latest - strategy: - matrix: - ver: - - '1.16.5' - - '1.16.4' - - '1.16.3' - - '1.16.2' - - '1.16.1' - - '1.15.2' - - '1.15.1' - - '1.15' - - '1.14.4' - - '1.14.3' - - '1.14.2' - - '1.14.1' - - '1.14' - - '1.13.2' - - '1.13.1' - - '1.13' - - '1.12.2' - - '1.12.1' - - '1.12' - - '1.11.2' - - '1.11.1' - - '1.11' - - '1.10.2' - - '1.9.4' - - '1.9.2' - - '1.9' - - '1.8.8' - - '1.8.3' - - '1.8' - env: - ver: ${{ matrix.ver }} - - steps: - - name: Setup java - uses: actions/setup-java@v2 - with: - distribution: "adopt" - java-version: "8" - - - name: Download BuildTools.jar - run: wget https://hub.spigotmc.org/jenkins/job/BuildTools/lastSuccessfulBuild/artifact/target/BuildTools.jar - - - run: mkdir ./outputs - - - name: Build Jars - continue-on-error: true - run: java -jar BuildTools.jar --rev $ver --output-dir ./outputs - - - name: Upload artifact - uses: actions/upload-artifact@v2 - with: - name: outputs - path: outputs + upload_and_dist: needs: - - build_on_java16 - - build_on_java8 - build_on_java18 runs-on: ubuntu-latest