This commit is contained in:
Muyao 2024-08-27 10:24:52 +08:00
Родитель 7e086112b2
Коммит 9fa120312b
1 изменённых файлов: 2 добавлений и 2 удалений

4
.github/workflows/update-docs.yaml поставляемый
Просмотреть файл

@ -61,7 +61,7 @@ jobs:
java-version: 17
distribution: 'temurin'
- uses: actions/cache@v2
- uses: actions/cache@v3
id: mvn-cache
with:
path: ~/.m2/repository
@ -95,5 +95,5 @@ jobs:
elif [[ -n "${{ github.event.inputs.committish }}" ]] && [[ "${{ github.event.inputs.committish }}" != "main" ]] ; then
./docs/src/main/asciidoc/ghpages.sh --version ${{ github.event.inputs.committish }} --destination . --build
else
./docs/src/main/asciidoc/ghpages.sh --build
./mvnw install -P docs -P '!CI' -pl docs -DskipTests # Simplified PR check
fi