diff options
| author | Sho Sakuma <me@m1sk9.dev> | 2026-01-25 12:16:43 +0900 |
|---|---|---|
| committer | Sho Sakuma <me@m1sk9.dev> | 2026-01-25 12:16:43 +0900 |
| commit | 4c6d5b6b7ab33745dcc7a857931a17e98ea454d7 (patch) | |
| tree | 12ea378db56a45af8de84ff96c217b4c4d17a3ec /.github | |
| parent | e700f6f9f0bbf933f618f521b35a7963bc433de5 (diff) | |
| download | LunaticChat-4c6d5b6b7ab33745dcc7a857931a17e98ea454d7.tar.gz LunaticChat-4c6d5b6b7ab33745dcc7a857931a17e98ea454d7.tar.bz2 LunaticChat-4c6d5b6b7ab33745dcc7a857931a17e98ea454d7.zip | |
fix: Change to dokka workfrow
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/ci.yaml | 3 | ||||
| -rw-r--r-- | .github/workflows/dokka.yaml | 6 |
2 files changed, 6 insertions, 3 deletions
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: |
