Add old Jei compat (Require update) #113
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/checkout@v3.5.2 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v1.4.4 | |
with: | |
java-version: 17 | |
- name: Give permissions to Gradle | |
run: chmod +x ./gradlew | |
- name: Build with Gradle | |
run: ./gradlew build | |
- name: Get repository name | |
id: repo_name | |
run: echo "::set-output name=name::$(basename -s .git ${{ github.repository }})" | |
- name: Upload a Build Artifact | |
uses: actions/upload-artifact@v3.1.2 | |
with: | |
name: ${{ steps.repo_name.outputs.name }} | |
path: artifacts/**.jar |