diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0f1b1df..fb70402 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -43,7 +43,7 @@ jobs: uses: actions/setup-java@v2 with: java-version: ${{ matrix.java }} - distribution: 'adopt' + distribution: 'temurin' cache: gradle - name: Make Gradle wrapper executable @@ -81,12 +81,6 @@ jobs: path: './gradle.properties' property: 'base_version' - - name: Generate changelog - id: changelog - uses: metcalfc/changelog-generator@v1.0.0 - with: - myToken: ${{ secrets.GITHUB_TOKEN }} - - name: Download artifacts uses: actions/download-artifact@v2 with: @@ -97,6 +91,13 @@ jobs: run: | find bin/ -name '*-dev.jar' -delete + - name: Generate changelog + id: changelog + uses: metcalfc/changelog-generator@v1.0.0 + continue-on-error: true + with: + myToken: ${{ secrets.GITHUB_TOKEN }} + - name: Make and upload release uses: softprops/action-gh-release@v1 with: diff --git a/.github/workflows/matrix_includes.json b/.github/workflows/matrix_includes.json index 3c5ff09..e67961e 100644 --- a/.github/workflows/matrix_includes.json +++ b/.github/workflows/matrix_includes.json @@ -1,17 +1,22 @@ [ { - "java": 8, - "os": "ubuntu-latest", + "java": 16, + "os": "windows-latest", "run": "master" }, { - "java": 11, + "java": 16, "os": "ubuntu-latest", + "run": "always" + }, + { + "java": 17, + "os": "windows-latest", "run": "master" }, { - "java": 16, + "java": 17, "os": "ubuntu-latest", - "run": "always" + "run": "master" } ] \ No newline at end of file diff --git a/build.gradle b/build.gradle index f17cdfe..feafbc2 100644 --- a/build.gradle +++ b/build.gradle @@ -1,5 +1,5 @@ plugins { - id 'fabric-loom' version '0.7-SNAPSHOT' + id 'fabric-loom' version '0.9-SNAPSHOT' id 'maven-publish' } @@ -16,7 +16,7 @@ repositories { } loom { - accessWidener = file("src/main/resources/no-spawnchunks.accesswidener") + accessWidenerPath = file("src/main/resources/no-spawnchunks.accesswidener") } dependencies {