aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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: