aboutsummaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorKrakenied <Krakenied1@gmail.com>2024-09-11 10:09:10 +0200
committerKrakenied <46192742+Krakenied@users.noreply.github.com>2024-09-11 11:36:35 +0200
commitb204931cc0eafc2969e8569fd3471182bca8eb23 (patch)
tree282a96a0322b2a1039e5a3b9525494db098dc138 /.github
parent335dbf8288df988830ecba738fa97dd22f1ff161 (diff)
Start uploading JARs downgraded to 11
Check only the youngest commit for CI skip
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build.yml8
1 files changed, 7 insertions, 1 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 7a1ab03e..8e8f311d 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -8,7 +8,7 @@ jobs:
distribution: [temurin]
java-version: ["21"]
runs-on: ${{ matrix.os }}
- if: "!startsWith(github.event.commits[0].message, '[ci-skip]')"
+ if: "!startsWith(github.event.head_commit.message, '[ci-skip]')"
steps:
- name: Checkout repository
uses: actions/checkout@v4
@@ -39,6 +39,12 @@ jobs:
name: Quests-JDK1.8 (use at your own risk)
path: build/libs/*-downgraded-8-shaded.jar
if-no-files-found: error
+ - name: Upload the downgraded Java 11 plugin JAR
+ uses: actions/upload-artifact@v4
+ with:
+ name: Quests-JDK11 (use at your own risk)
+ path: build/libs/*-downgraded-11-shaded.jar
+ if-no-files-found: error
- name: Upload the downgraded Java 16 plugin JAR
uses: actions/upload-artifact@v4
with: