-
-
Notifications
You must be signed in to change notification settings - Fork 68
39 lines (38 loc) · 1011 Bytes
/
dokka.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
name: Javadoc
on:
push:
branches:
- master
jobs:
javadoc:
runs-on: ubuntu-latest
if: github.repository == 'spotbugs/spotbugs-gradle-plugin'
steps:
- name: Checkout
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Set up JDK
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version-file: .java-version
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: npm
- name: Generate Dokka HTML
uses: gradle/actions/setup-gradle@v3
with:
arguments: dokkaHtml
- name: Prepare to Deploy
run: |
npm ci
rm -f .git/hooks/commit-msg
- name: Deploy
uses: JamesIves/github-pages-deploy-action@releases/v3
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages
FOLDER: build/dokka/html/