Skip to content

Commit

Permalink
Crystals Release 1.2.1
Browse files Browse the repository at this point in the history
Patch workflow(bruh.)
  • Loading branch information
Killarexe committed Jun 6, 2024
1 parent a1c99e1 commit 27b1589
Showing 1 changed file with 38 additions and 2 deletions.
40 changes: 38 additions & 2 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,48 @@ jobs:

steps:
- uses: actions/checkout@v3
- name: Set up JDK 17
- name: Set up JDK 21
uses: actions/setup-java@v3
with:
java-version: '17'
java-version: '21'
distribution: 'temurin'
- name: Build with Gradle
uses: gradle/gradle-build-action@bd5760595778326ba7f1441bcf7e88b49de61a25 # v2.6.0
with:
arguments: build
- name: Upload Fabric Mod
uses: actions/upload-artifact@v4
with:
name: crystals-fabric-1.2.1
path: /home/runner/work/Crystals/Crystals/fabric/build/libs/crystals-1.2.1.jar
retention-days: 7
- name: Upload Fabric Mod Sources
uses: actions/upload-artifact@v4
with:
name: crystals-fabric-1.2.1-sources
path: /home/runner/work/Crystals/Crystals/fabric/build/libs/crystals-1.2.1-sources.jar
retention-days: 7
- name: Upload Fabric Mod Dev Shadow
uses: actions/upload-artifact@v4
with:
name: crystals-fabric-1.2.1-dev-shadow
path: /home/runner/work/Crystals/Crystals/fabric/build/libs/crystals-1.2.1-dev-shadow.jar
retention-days: 7
- name: Upload NeoForge Mod
uses: actions/upload-artifact@v4
with:
name: crystals-neoforge-1.2.1
path: /home/runner/work/Crystals/Crystals/neoforge/build/libs/crystals-1.2.1.jar
retention-days: 7
- name: Upload NeoForge Mod Sources
uses: actions/upload-artifact@v4
with:
name: crystals-neoforge-1.2.1-sources
path: /home/runner/work/Crystals/Crystals/neoforge/build/libs/crystals-1.2.1-sources.jar
retention-days: 7
- name: Upload NeoForge Mod Dev Shadow
uses: actions/upload-artifact@v4
with:
name: crystals-neoforge-1.2.1-dev-shadow
path: /home/runner/work/Crystals/Crystals/neoforge/build/libs/crystals-1.2.1-dev-shadow.jar
retention-days: 7

0 comments on commit 27b1589

Please sign in to comment.