diff options
-rw-r--r-- | .github/workflows/build.yml | 11 |
1 files changed, 10 insertions, 1 deletions
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 |