We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c76bf51 + 9c89254 commit 5bfd6c3Copy full SHA for 5bfd6c3
.github/workflows/docs.yml
@@ -16,8 +16,11 @@ concurrency:
16
17
jobs:
18
build:
19
- name: Build JavaDocs
+ name: Build JavaDocs and deploy to GitHub Pages
20
runs-on: ubuntu-latest
21
+ environment:
22
+ name: github-pages
23
+ url: ${{steps.deployment.outputs.page_url}}
24
steps:
25
- uses: actions/checkout@v3
26
- name: Set up JDK 17
@@ -28,14 +31,6 @@ jobs:
28
31
cache: maven
29
32
- name: Generate Javadoc
30
33
run: mvn -B package --file pom.xml
- deploy:
- name: Deploy to GitHub Pages
- environment:
34
- name: github-pages
35
- url: ${{steps.deployment.outputs.page_url}}
36
- runs-on: ubuntu-latest
37
- needs: build
38
- steps:
39
- name: Setup Pages
40
uses: actions/configure-pages@v4
41
- name: Upload artifact
0 commit comments