Skip to content

Commit

Permalink
NeoForge 1.20.4 (#7493)
Browse files Browse the repository at this point in the history
  • Loading branch information
shartte authored Dec 24, 2023
1 parent b271fa3 commit e501ce2
Show file tree
Hide file tree
Showing 148 changed files with 1,747 additions and 5,219 deletions.
6 changes: 5 additions & 1 deletion .github/actions/gradle-setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,8 @@ runs:
with:
distribution: 'microsoft'
java-version: '17'
cache: 'gradle'

- name: Setup Gradle
uses: gradle/gradle-build-action@v2
with:
cache-read-only: ${{ github.ref != 'refs/heads/main' }}
7 changes: 1 addition & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,7 @@ jobs:

steps:
- uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
distribution: 'microsoft'
java-version: '17'
cache: 'gradle'
- uses: ./.github/actions/gradle-setup
- name: Validate no assets
run: test ! -d ./src/generated
- name: Generate assets
Expand Down
7 changes: 1 addition & 6 deletions .github/workflows/export_guide.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,7 @@ jobs:
- name: Install Software OpenGL Rendering
run: sudo apt-get install xvfb libgl1-mesa-dri zopfli
- uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
distribution: 'microsoft'
java-version: '17'
cache: 'gradle'
- uses: ./.github/actions/gradle-setup
- name: Generate Assets
run: ./gradlew runData
- name: Export Guide
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/localization.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,13 @@ jobs:
with:
distribution: 'microsoft'
java-version: '17'
cache: 'gradle'
- name: Setup Gradle
uses: gradle/gradle-build-action@v2
with:
cache-read-only: ${{ github.ref != 'refs/heads/main' }}
- uses: actions/setup-node@v2
with:
node-version: "16"
node-version: "18"
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Download new translations from crowdin
Expand Down
Loading

0 comments on commit e501ce2

Please sign in to comment.