Skip to content

Commit 5c9062c

Browse files
committed
Update to MC 1.21.2-4
1 parent efe2c3f commit 5c9062c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+338
-831
lines changed

.github/workflows/build.yml

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Build
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- name: Checkout repository
10+
uses: actions/checkout@v4
11+
with:
12+
fetch-depth: 0
13+
fetch-tags: true
14+
15+
- name: Setup JDK 21
16+
uses: actions/setup-java@v4
17+
with:
18+
java-version: '21'
19+
distribution: 'temurin'
20+
21+
- name: Setup Gradle
22+
uses: gradle/actions/setup-gradle@v4
23+
24+
- name: Build with Gradle
25+
run: ./gradlew build

.gitignore

+1-4
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,4 @@ run
2323
runs
2424
run-data
2525

26-
repo
27-
28-
# Files from Forge MDK
29-
forge*changelog.txt
26+
repo

CREDITS.txt

-65
This file was deleted.

0 commit comments

Comments
 (0)