We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d47a7bd + 1b16560 commit 28f2f89Copy full SHA for 28f2f89
.github/workflows/pr-build-workflow.yml
@@ -22,3 +22,23 @@ jobs:
22
distribution: 'temurin'
23
- name: Build with Gradle
24
run: ./gradlew clean build --continue --scan
25
+ generate-docs:
26
+ name: Generate Docs
27
+ runs-on: ubuntu-latest
28
+ if: ${{ github.repository == 'spring-projects/spring-security' }}
29
+ steps:
30
+ - uses: actions/checkout@v4
31
+ - name: Set up gradle
32
+ uses: spring-io/spring-gradle-build-action@v2
33
+ with:
34
+ java-version: '17'
35
+ distribution: 'temurin'
36
+ - name: Run Antora
37
+ run: ./gradlew -PbuildSrc.skipTests=true :spring-security-docs:antora
38
+ - name: Upload Docs
39
+ id: upload
40
+ uses: actions/upload-artifact@v4
41
42
+ name: docs
43
+ path: docs/build/site
44
+ overwrite: true
0 commit comments