Skip to content

Commit

Permalink
Update to loom 0.9
Browse files Browse the repository at this point in the history
  • Loading branch information
logwet committed Oct 24, 2021
1 parent 6a78d6f commit 3d9b27d
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 14 deletions.
15 changes: 8 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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:
Expand All @@ -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:
Expand Down
15 changes: 10 additions & 5 deletions .github/workflows/matrix_includes.json
Original file line number Diff line number Diff line change
@@ -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"
}
]
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id 'fabric-loom' version '0.7-SNAPSHOT'
id 'fabric-loom' version '0.9-SNAPSHOT'
id 'maven-publish'
}

Expand All @@ -16,7 +16,7 @@ repositories {
}

loom {
accessWidener = file("src/main/resources/no-spawnchunks.accesswidener")
accessWidenerPath = file("src/main/resources/no-spawnchunks.accesswidener")
}

dependencies {
Expand Down

0 comments on commit 3d9b27d

Please sign in to comment.