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 59e755e commit a8a48a6Copy full SHA for a8a48a6
.github/workflows/build-and-deploy-javadoc.yml
@@ -95,6 +95,12 @@ jobs:
95
restore-keys: |
96
javadocs-
97
98
+ - name: Upload Javadocs artifact
99
+ uses: actions/upload-pages-artifact@v3
100
+ with:
101
+ name: github-pages
102
+ path: processing4/build/javadoc
103
+
104
- name: Clean up the processing4 directory
105
run: |
106
rm -rf processing4/
@@ -132,7 +138,7 @@ jobs:
132
138
- name: Restore Javadocs from cache
133
139
uses: actions/cache@v4
134
140
with:
135
- path: processing4/build/javadoc
141
+ path: doc
136
142
key: javadocs-${{ env.COMMIT_SHA }}
137
143
144
0 commit comments