diff --git a/.github/workflows/gradle.yml b/.github/workflows/gradle.yml new file mode 100644 index 0000000..11430a8 --- /dev/null +++ b/.github/workflows/gradle.yml @@ -0,0 +1,29 @@ +on: + push: + branches: [ "fabric-1.19" ] + pull_request: + branches: [ "fabric-1.19" ] + +permissions: + contents: read + +jobs: + build: + runs-on: ubuntu-22.04 + steps: + - uses: actions/checkout@v3 + - name: Set up JDK 17 + uses: actions/setup-java@v3 + with: + java-version: '17' + distribution: 'temurin' + - name: Grant execute permission for gradlew + run: chmod +x gradlew + - name: Build with Gradle + run: ./gradlew build --stacktrace --info + - name: Upload a Build Artifact + uses: actions/upload-artifact@v3 + with: + name: Blur-Artifact + path: build/libs/blur-*.*.jar + if-no-files-found: error diff --git a/gradle.properties b/gradle.properties index 1c3eb81..fbadb92 100755 --- a/gradle.properties +++ b/gradle.properties @@ -4,11 +4,11 @@ org.gradle.jvmargs=-Xmx1G # Fabric Properties # check these on https://fabricmc.net/develop minecraft_version=1.19.2 - yarn_mappings=1.19.2+build.24 - loader_version=0.14.9 + yarn_mappings=1.19.2+build.28 + loader_version=0.14.10 # Mod Properties - mod_version = 2.6.0 + mod_version = 2.6.1 maven_group = com.tterrag.blur archives_base_name = blur @@ -16,4 +16,4 @@ org.gradle.jvmargs=-Xmx1G # currently not on the main fabric site, check on the maven: https://maven.fabricmc.net/net/fabricmc/fabric-api/fabric-api fabric_version=0.64.0+1.19.2 satin_version = 1.9.0 - midnightlib_version=0.6.0 + midnightlib_version=0.6.1