Skip to content

Commit a8a48a6

Browse files
committed
Add step to upload Javadocs artifact (needed by deploy action) and update cache path
1 parent 59e755e commit a8a48a6

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/build-and-deploy-javadoc.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,12 @@ jobs:
9595
restore-keys: |
9696
javadocs-
9797
98+
- name: Upload Javadocs artifact
99+
uses: actions/upload-pages-artifact@v3
100+
with:
101+
name: github-pages
102+
path: processing4/build/javadoc
103+
98104
- name: Clean up the processing4 directory
99105
run: |
100106
rm -rf processing4/
@@ -132,7 +138,7 @@ jobs:
132138
- name: Restore Javadocs from cache
133139
uses: actions/cache@v4
134140
with:
135-
path: processing4/build/javadoc
141+
path: doc
136142
key: javadocs-${{ env.COMMIT_SHA }}
137143
restore-keys: |
138144
javadocs-

0 commit comments

Comments
 (0)