Compare commits
2 Commits
createairf
...
be9a4bdd59
Author | SHA1 | Date | |
---|---|---|---|
be9a4bdd59 | |||
2c386caace |
@ -12,21 +12,21 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: checkout repository
|
||||
uses: https://git.bitheaven.ru/actions/checkout@v2
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: setup jdk ${{ matrix.java }}
|
||||
uses: https://git.bitheaven.ru/actions/setup-java@v1
|
||||
uses: actions/setup-java@v4
|
||||
with:
|
||||
distribution: 'liberica'
|
||||
java-version: ${{ matrix.java }}
|
||||
|
||||
- uses: https://git.bitheaven.ru/actions/cache@v2
|
||||
- uses: actions/cache@v4
|
||||
with:
|
||||
path: |
|
||||
~/.gradle/caches
|
||||
~/.gradle/loom-cache
|
||||
~/.gradle/wrapper
|
||||
key: ${{ runner.os }}-gradle-${{ hashFiles('**/gradle-wrapper.properties') }}
|
||||
restore-keys: ${{ runner.os }}-gradle
|
||||
|
||||
- name: make gradle wrapper executable
|
||||
run: chmod +x ./gradlew
|
||||
@ -34,8 +34,11 @@ jobs:
|
||||
- name: build
|
||||
run: ./gradlew build
|
||||
|
||||
- name: capture build artifacts
|
||||
uses: https://git.bitheaven.ru/actions/upload-artifact@v2
|
||||
- name: Make release
|
||||
uses: actions/gitea-release-action@v1
|
||||
with:
|
||||
name: Artifacts
|
||||
path: build/libs/
|
||||
name: Create Air Fabric 1.0-1${{ gitea.run_id }} for 1.20.1
|
||||
md5sum: true
|
||||
sha256sum: true
|
||||
files: |-
|
||||
build/libs/**
|
||||
|
@ -71,6 +71,8 @@ dependencies {
|
||||
modLocalRuntime("maven.modrinth:lazydfu:${lazydfu_version}")
|
||||
modLocalRuntime("com.terraformersmc:modmenu:${modmenu_version}")
|
||||
|
||||
include(implementation(annotationProcessor("io.github.llamalad7:mixinextras-fabric:0.4.1")))
|
||||
|
||||
// Recipe Viewers - Create Fabric supports JEI, REI, and EMI.
|
||||
// See root gradle.properties to choose which to use at runtime.
|
||||
switch (recipe_viewer.toLowerCase(Locale.ROOT)) {
|
||||
|
Reference in New Issue
Block a user