-
Notifications
You must be signed in to change notification settings - Fork 0
47 lines (42 loc) · 1.09 KB
/
javadoc.yaml
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
40
41
42
43
44
45
46
47
name: publish-javadoc
run-name: Publish Javadocs to Github pages
on:
push:
release:
types: [created]
# Allow one concurrent deployment
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
generate-javadoc:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/cache@v3
with:
path: ~/.m2/repository
key: javadoc-cache
- uses: actions/setup-java@v3
with:
java-version: '21'
distribution: 'temurin'
- name: Generate JavaDoc
run: mvn --batch-mode install javadoc:javadoc -pl "!tester"
- name: Upload interface artifact
uses: actions/[email protected]
with:
path: interfaces/target/site/apidocs
deploy:
needs: generate-javadoc
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/[email protected]