Merge pull request #83 from ethauvin/main

Add caching to pages workflow
This commit is contained in:
Geert Bevin 2026-06-24 11:02:23 -04:00 committed by GitHub
commit 6b66a356ee
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -43,8 +43,16 @@ jobs:
distribution: 'corretto' distribution: 'corretto'
java-version: 17 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 - name: Build Javadocs
run: ./bld clean download clean compile javadoc run: ./bld clean compile javadoc
- name: Setup Pages - name: Setup Pages
uses: actions/configure-pages@v6 uses: actions/configure-pages@v6