From 0081ed1c456c85eb4d98f69addb48b2480338c72 Mon Sep 17 00:00:00 2001 From: Mariell Hoversholm Date: Sat, 30 Jan 2021 14:33:22 +0100 Subject: [PATCH] Add javadoc step to GH Actions --- .github/workflows/build.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index dc159f206c..7c30a42386 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -17,20 +17,22 @@ jobs: fail-fast: true steps: - uses: actions/checkout@v2 - - name: JDK ${{ matrix.java }} + - name: JDK ${{ matrix.java }} uses: actions/setup-java@v1 with: - java-version: ${{ matrix.java }} + java-version: ${{ matrix.java }} - name: Cache maven uses: actions/cache@v2 with: path: | ~/.m2/repository/ work/Minecraft - key: ${{ runner.os }}-paper-${{ hashFiles('**/pom.xml') }} + key: ${{ runner.os }}-paper-${{ hashFiles('**/pom.xml') }} restore-keys: ${{ runner.os }}-paper - name: Patch and build run: | git config --global user.email "no-reply@github.com" git config --global user.name "Github Actions" ./paper build + - name: Build javadocs + run: mvn -pl Paper-API,Paper-MojangAPI -am javadoc:javadoc