Skip to content

Commit

Permalink
Gale initial
Browse files Browse the repository at this point in the history
  • Loading branch information
Dreeam-qwq committed Dec 3, 2022
1 parent c2693ea commit 53afd90
Show file tree
Hide file tree
Showing 22 changed files with 3,253 additions and 11 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/LeafGale-1192.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Build LeafGale-1.19.2
on: [ push, pull_request ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: gradle/wrapper-validation-action@master
- uses: actions/setup-java@v3
with:
distribution: temurin
java-version: 17
cache: gradle
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Configure Git
run: git config --global user.email "no-reply@github.com" && git config --global user.name "Github Actions"
- name: Apply patches
run: ./gradlew applyPatches --stacktrace
- name: Create ReobfPaperclipJar
run: ./gradlew createReobfPaperclipJar --stacktrace
- name: Rename Paperclip Jar
run: mv build/libs/leaf-paperclip-1.19.2-R0.1-SNAPSHOT-reobf.jar ./leafgale-1.19.2.jar
- name: Upload LeafGale
uses: actions/upload-artifact@v3
with:
name: LeafGale
path: ./leafgale-1.19.2.jar
64 changes: 55 additions & 9 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,14 +1,60 @@
.gradle
/build/
# JVM crash related
core.*
hs_err_pid*

# Ignore Gradle GUI config
gradle-app.setting
# Intellij
.idea/
*.iml
*.ipr
*.iws
out/

# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
# Eclipse
.classpath
.project
.settings/

# netbeans
nbproject/
nbactions.xml

# Gradle
!gradle-wrapper.jar
.gradle/
build/
*/build/

# we use maven!
build.xml

# Maven
log/
target/
dependency-reduced-pom.xml

# various other potential build files
build/
bin/
dist/
manifest.mf

# Mac
.DS_Store/
.DS_Store

# vim
.*.sw[a-p]

# Linux temp files
*~

# Cache of project
.gradletasknamecache
# other stuff
run/

# # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
# gradle/wrapper/gradle-wrapper.properties
build-data/
Leaf-API
Leaf-MojangAPI
Leaf-Server
*.jar
/patches/todo-api/
/patches/todo-server/
Loading

0 comments on commit 53afd90

Please sign in to comment.