mirror of
https://github.com/rife2/bld
synced 2026-06-25 05:27:46 +02:00
Merge pull request #83 from ethauvin/main
Add caching to pages workflow
This commit is contained in:
commit
6b66a356ee
10
.github/workflows/pages.yml
vendored
10
.github/workflows/pages.yml
vendored
|
|
@ -43,8 +43,16 @@ jobs:
|
|||
distribution: 'corretto'
|
||||
java-version: 17
|
||||
|
||||
- name: Cache bld dependencies
|
||||
id: cache-bld
|
||||
uses: actions/cache@v5
|
||||
with:
|
||||
path: lib
|
||||
key: ${{ runner.os }}-bld-pages-lib
|
||||
restore-keys: ${{ runner.os }}-bld-pages-lib
|
||||
|
||||
- name: Build Javadocs
|
||||
run: ./bld clean download clean compile javadoc
|
||||
run: ./bld clean compile javadoc
|
||||
|
||||
- name: Setup Pages
|
||||
uses: actions/configure-pages@v6
|
||||
|
|
|
|||
Loading…
Reference in a new issue