From 16bba767b55eca4531e89f3ac70fdf0f16573913 Mon Sep 17 00:00:00 2001 From: Linnea Gräf Date: Wed, 8 Jan 2025 14:02:15 +0100 Subject: ci: Add more info to debug builds --- .github/workflows/build.yml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0b2ab06..7765a6c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -21,12 +21,21 @@ jobs: - name: Execute Gradle build run: ./gradlew build - + - name: Show build directory + if: runner.debug == '1' + run: | + ls -lahR build - name: Upload built mod JAR uses: actions/upload-artifact@v4.3.0 with: name: mod-jar path: build/libs/*.jar + - name: Upload partial JARs + if: runner.debug == '1' + uses: actions/upload-artifact@v4.3.0 + with: + name: extras + path: build/badjars/*.jar release: runs-on: ubuntu-latest needs: gradle -- cgit