From 0b133ea9cce456eba523959e1f2c7a4bebb2a2a3 Mon Sep 17 00:00:00 2001 From: Jannik Reimers Date: Fri, 25 Oct 2024 11:09:42 +0200 Subject: [PATCH] man --- .github/workflows/ci.yml | 15 ++++----------- .github/workflows/develop.yml | 15 ++++----------- .github/workflows/root.yml | 15 ++++----------- 3 files changed, 12 insertions(+), 33 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 135e669..aa4b4fc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,16 +28,9 @@ jobs: - name: Gradle (Build) run: "./gradlew build" - - name: Upload artifacts (Main JAR) - uses: actions/upload-artifact@v4 + - name: Upload build artifacts + uses: actions/upload-artifact@v3 with: - name: Main JAR - path: build/libs/*-all.jar - - - name: Upload artifacts (JARs) - uses: actions/upload-artifact@v4 - - with: - name: JARs - path: build/libs/*.jar + name: Build and Deploy Artifacts + path: build/libs/*[0-9].jar diff --git a/.github/workflows/develop.yml b/.github/workflows/develop.yml index d291f31..750a7cc 100644 --- a/.github/workflows/develop.yml +++ b/.github/workflows/develop.yml @@ -25,16 +25,9 @@ jobs: - name: Gradle (Build) run: "./gradlew build" - - name: Upload artifacts (Main JAR) - uses: actions/upload-artifact@v4 + - name: Upload build artifacts + uses: actions/upload-artifact@v3 with: - name: Main JAR - path: build/libs/*-all.jar - - - name: Upload artifacts (JARs) - uses: actions/upload-artifact@v4 - - with: - name: JARs - path: build/libs/*.jar + name: Build and Deploy Artifacts + path: build/libs/*[0-9].jar diff --git a/.github/workflows/root.yml b/.github/workflows/root.yml index e3e4349..43c746b 100644 --- a/.github/workflows/root.yml +++ b/.github/workflows/root.yml @@ -25,16 +25,9 @@ jobs: - name: Gradle (Build) run: "./gradlew build" - - name: Upload artifacts (Main JAR) - uses: actions/upload-artifact@v4 + - name: Upload build artifacts + uses: actions/upload-artifact@v3 with: - name: Main JAR - path: build/libs/*-all.jar - - - name: Upload artifacts (JARs) - uses: actions/upload-artifact@v4 - - with: - name: JARs - path: build/libs/*.jar + name: Build and Deploy Artifacts + path: build/libs/*[0-9].jar