-
Notifications
You must be signed in to change notification settings - Fork 0
54 lines (43 loc) · 1.36 KB
/
ci.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
name: Java CI/CD with GitHub Pages
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v2
with:
java-version: '11'
distribution: 'microsoft'
- name: Build with Maven
run: mvn -B package --file pox.xml
- name: Generate Javadoc
run: mvn -f pox.xml javadoc:javadoc
- name: Upload Javadoc as an artifact
uses: actions/upload-artifact@v3
with:
name: javadoc
path: ./target/site/apidocs # Upload the generated site directory
- name: Run tests
run: mvn -f pox.xml test
deploy:
runs-on: ubuntu-latest
needs: build
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Download Javadoc artifact
uses: actions/download-artifact@v3
with:
name: javadoc # Download the previously uploaded artifact
path: ./javadoc
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.PERSONAL_TOKEN }}
publish_dir: ./javadoc # Assuming you are deploying static content from the site directory