Skip to content

Commit 28f2f89

Browse files
Merge branch '6.2.x'
Closes gh-15061
2 parents d47a7bd + 1b16560 commit 28f2f89

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

Diff for: .github/workflows/pr-build-workflow.yml

+20
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,23 @@ jobs:
2222
distribution: 'temurin'
2323
- name: Build with Gradle
2424
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+
with:
42+
name: docs
43+
path: docs/build/site
44+
overwrite: true

0 commit comments

Comments
 (0)