mirror of
https://github.com/Motschen/Blur.git
synced 2025-12-18 12:45:10 +01:00
Merge pull request #55 from backryun/fabric-1.19
Add workflow and Updated Dependencys
This commit is contained in:
29
.github/workflows/gradle.yml
vendored
Normal file
29
.github/workflows/gradle.yml
vendored
Normal file
@@ -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
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user