Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/Mods' into Mods
Browse files Browse the repository at this point in the history
  • Loading branch information
WMF-Industries committed Dec 20, 2023
2 parents 74663b5 + 431962f commit 8d0472c
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/builder.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Java CI

on: [push, pull_request]

jobs:
buildJar:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Set up PATH
run: echo "${ANDROID_HOME}/build-tools/30.0.2" >> $GITHUB_PATH

- name: Set up JDK 17
uses: actions/setup-java@v1
with:
java-version: 17

- name: Grant execute permission for gradlew
run: chmod +x gradlew

- name: Build with Gradle
run: ./gradlew deploy

- name: Upload built jar file
uses: actions/[email protected]
with:
name: FloodCompat
path: build/libs

0 comments on commit 8d0472c

Please sign in to comment.