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.
1 parent f669294 commit 069c77aCopy full SHA for 069c77a
.github/workflows/deploy-docs.yml
@@ -8,15 +8,16 @@ on:
8
required: false
9
push:
10
branches: docs-build
11
-permissions:
12
- contents: write
+permissions: read-all
13
jobs:
14
build:
15
if: github.repository_owner == 'spring-projects'
16
runs-on: ubuntu-latest
17
steps:
18
- name: Checkout
19
uses: actions/checkout@v3
+ with:
20
+ fetch-depth: 5
21
- name: Set up JDK 17
22
uses: actions/setup-java@v3
23
with:
@@ -33,6 +34,8 @@ jobs:
33
34
- name: Run Antora
35
run: |
36
./mvnw antora
37
+ - name: Copy the cache to be included in the site
38
+ run: cp -rf build/antora/inject-collector-cache-config-extension/.cache build/site/
39
- name: Publish Docs
40
uses: spring-io/spring-doc-actions/[email protected]
41
0 commit comments