From 4c6d5b6b7ab33745dcc7a857931a17e98ea454d7 Mon Sep 17 00:00:00 2001 From: Sho Sakuma Date: Sun, 25 Jan 2026 12:16:43 +0900 Subject: fix: Change to dokka workfrow --- .github/workflows/ci.yaml | 3 +++ .github/workflows/dokka.yaml | 6 +++--- 2 files changed, 6 insertions(+), 3 deletions(-) (limited to '.github') diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 6cab034..8c561d2 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -43,6 +43,9 @@ jobs: - name: Build with shadowJar run: ./gradlew :platform-paper:shadowJar --parallel --no-daemon + - name: Generate Dokka + run: ./gradlew :dokka:dokkaGenerate --no-daemon + - name: Upload build artifact uses: actions/upload-artifact@v6 if: success() diff --git a/.github/workflows/dokka.yaml b/.github/workflows/dokka.yaml index a8b3c80..9f79ef2 100644 --- a/.github/workflows/dokka.yaml +++ b/.github/workflows/dokka.yaml @@ -31,14 +31,14 @@ jobs: - name: Grant execute permission for gradlew run: chmod +x gradlew - - name: Generate JavaDoc with Dokka - run: ./gradlew :platform-paper:dokkaGenerate --no-daemon + - name: Generate Dokka + run: ./gradlew :dokka:dokkaGenerate --no-daemon - name: Upload artifact id: lunaticchat_dokka uses: actions/upload-pages-artifact@v4 with: - path: platform-paper/build/dokka/html + path: dokka/build/dokka/html deploy: environment: -- cgit v1.2.1