We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cc14dfe commit 65555ffCopy full SHA for 65555ff
1 file changed
.github/workflows/docs.yml
@@ -36,6 +36,7 @@ jobs:
36
- name: Upload documentation
37
uses: actions/upload-artifact@v4
38
with:
39
+ name: documentation
40
path: docs/
41
42
# Deploy the artifact to GitHub pages.
@@ -52,10 +53,15 @@ jobs:
52
53
steps:
54
- name: Configure Pages
55
uses: actions/configure-pages@v5
- - name: Upload artifact
56
- uses: actions/upload-pages-artifact@v3
+
57
+ - name: Download artifact
58
+ uses: actions/download-artifact@v4
59
- path: .
60
61
+ path: docs/
62
63
- name: Deploy to GitHub Pages
64
id: deployment
65
uses: actions/deploy-pages@v4
66
+ with:
67
+ artifact_name: documentation
0 commit comments