Update ALL #196
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Java with Gradle | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- name: Set up JDK 21 | |
uses: actions/[email protected] | |
with: | |
java-version: 21 | |
distribution: temurin | |
- name: Give permissions to Gradle | |
run: chmod +x ./gradlew | |
- name: Build with Gradle | |
run: ./gradlew build | |
- uses: actions/[email protected] | |
with: | |
name: KrystalCraft-Forge | |
path: forge/build/libs/**.jar | |
- uses: actions/[email protected] | |
with: | |
name: KrystalCraft-Fabric | |
path: fabric/build/libs/**.jar |