aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build.yml16
1 files changed, 9 insertions, 7 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index df809fc..15362ea 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
- java: [ 11, 16 ]
+ java: [ 11, 17 ]
fail-fast: true
steps:
- name: Checkout
@@ -17,12 +17,6 @@ jobs:
with:
distribution: adopt
java-version: ${{ matrix.java }}
- - name: Cache Gradle
- uses: actions/cache@v3.0.1
- with:
- path: ~/.gradle
- key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
- restore-keys: ${{ runner.os }}-gradle-
- name: Build LimboAuth
run: ./gradlew build
- name: Upload LimboAuth
@@ -30,3 +24,11 @@ jobs:
with:
name: LimboAuth Built On ${{ matrix.java }} JDK
path: "build/libs/limboauth*.jar"
+ - name: Release the build
+ uses: ncipollo/release-action@v1
+ with:
+ artifacts: "build/libs/limboauth*.jar"
+ body: ${{ join(github.event.commits, '\n') }}
+ prerelease: true
+ name: JDK ${{ matrix.java }} Dev-build
+ tag: dev-build-jdk-${{ matrix.java }}