We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 001f04a commit bedb68eCopy full SHA for bedb68e
.github/workflows/build-and-deploy-javadoc.yml
@@ -87,7 +87,13 @@ jobs:
87
- name: Add .nojekyll file
88
run: echo > processing4/build/javadoc/.nojekyll
89
90
- - name: Upload Javadocs artifact
+ - name: Upload Javadocs artifact for Deployment
91
+ uses: actions/upload-pages-artifact@v3
92
+ with:
93
+ name: github-pages
94
+ path: processing4/build/javadoc
95
+
96
+ - name: Upload Javadocs artifact for Commit
97
uses: actions/upload-artifact@v4
98
with:
99
name: javadocs
@@ -111,7 +117,7 @@ jobs:
111
117
id: deployment
112
118
uses: actions/deploy-pages@v4
113
119
114
- artifact_name: javadocs
120
+ artifact_name: github-pages
115
121
116
122
- name: Echo the output page URL
123
run: echo "Your site is live at ${{ steps.deployment.outputs.page_url }}"
0 commit comments