From 89f89ea896be4c9dd37733e95c30af9ebd42ab17 Mon Sep 17 00:00:00 2001 From: BlayTheNinth <1933180+BlayTheNinth@users.noreply.github.com> Date: Wed, 23 Oct 2024 15:14:24 +0200 Subject: [PATCH] ci: Make whole build dir artifact to maybe speed up builds --- .github/workflows/publish-release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish-release.yml b/.github/workflows/publish-release.yml index 53d1fad0..62ab5cb6 100644 --- a/.github/workflows/publish-release.yml +++ b/.github/workflows/publish-release.yml @@ -95,7 +95,7 @@ jobs: uses: actions/upload-artifact@v4 with: name: ${{ matrix.loader }}-artifact - path: ${{ matrix.loader }}/build/libs/* + path: ${{ matrix.loader }}/build needs: create-release publish-release: runs-on: ubuntu-latest @@ -111,7 +111,7 @@ jobs: uses: actions/download-artifact@v4 with: name: ${{ matrix.loader }}-artifact - path: ${{ matrix.loader }}/build/libs + path: ${{ matrix.loader }}/build - name: Validate gradle wrapper uses: gradle/actions/wrapper-validation@v3 - name: Setup JDK