-
Notifications
You must be signed in to change notification settings - Fork 3
61 lines (49 loc) · 1.33 KB
/
javadocs.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
name: Publish javadocs
on:
push:
branches: [ development, experimental ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: 17
java-package: jdk
distribution: 'temurin'
- name: Set up Python 3.9
uses: actions/setup-python@v5
with:
python-version: 3.9
- name: Install GH import
run: |
python -m pip install --upgrade pip
pip install ghp-import
- name: Checkout NeuroML2
uses: actions/checkout@v4
with:
repository: NeuroML/NeuroML2
ref: ${{ github.ref }}
path: NeuroML2
- name: Checkout org.neuroml.model.injectingplugin
uses: actions/checkout@v4
with:
repository: NeuroML/org.neuroml.model.injectingplugin
ref: ${{ github.ref }}
path: org.neuroml.model.injectingplugin
- name: Install NeuroML deps
run: |
pushd NeuroML2
mvn install
popd
pushd org.neuroml.model.injectingplugin
mvn install
popd
- name: Generate javadocs
run: |
mvn javadoc:javadoc
- name: Publish documentation on GH pages
run: |
ghp-import -f -m "Regenerate documentation" -b gh-pages -n -p target/site/apidocs