-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit b2ff9bc
Showing
14 changed files
with
1,004 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
name: Java CI with Gradle | ||
|
||
on: push | ||
|
||
jobs: | ||
|
||
jdk17: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v2 | ||
|
||
- name: Setup JDK 17 | ||
uses: actions/setup-java@v2 | ||
with: | ||
java-version: '17' | ||
distribution: 'temurin' | ||
|
||
- name: Build with Gradle | ||
uses: gradle/gradle-build-action@v2 | ||
with: | ||
arguments: build | ||
|
||
- name: Locate built JARfile | ||
id: jar | ||
run: echo "##[set-output name=jarfile;]$(find build/libs/ -name "*.jar" -not -name "*slim*" -not -name "*source*")" | ||
|
||
- name: Set Artifact name | ||
id: jarname | ||
run: echo "##[set-output name=jarname;]$(find build/libs/ -name "*.jar" -not -name "*slim*" -not -name "*source*" | sed 's:.*/::')" | ||
|
||
- name: Upload artifact | ||
uses: actions/[email protected] | ||
with: | ||
name: ${{ steps.jarname.outputs.jarname }} | ||
path: ${{ steps.jar.outputs.jarfile }} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# eclipse | ||
bin | ||
*.launch | ||
.settings | ||
.metadata | ||
.classpath | ||
.project | ||
|
||
# idea | ||
out | ||
*.ipr | ||
*.iws | ||
*.iml | ||
.idea | ||
|
||
# gradle | ||
build | ||
.gradle | ||
|
||
# other | ||
eclipse | ||
run | ||
logs | ||
|
||
# minigame definitions/worlds | ||
src/main/resources/**/maps/*.zip | ||
src/main/resources/**/games/*.json | ||
src/main/resources/**/*.bin | ||
|
||
# datagen caches | ||
**/.cache | ||
|
||
# Files from Forge MDK | ||
forge*changelog.txt | ||
|
||
Thumbs.db | ||
|
||
/libs/ |
Oops, something went wrong.