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 0415b48 commit c25c37dCopy full SHA for c25c37d
.github/workflows/deploy-docs.yml
@@ -30,6 +30,15 @@ jobs:
30
31
- name: Setup Pages
32
uses: actions/configure-pages@v3
33
+ with:
34
+ enablement: 'true' # Ensure Pages is enabled
35
+
36
+ - name: Copy .nojekyll file to root
37
+ run: |
38
+ # Make sure .nojekyll exists in doc directory
39
+ touch doc/.nojekyll
40
+ # Also copy it to the root of the artifact
41
+ cp doc/.nojekyll .
42
43
- name: Upload artifact
44
uses: actions/upload-pages-artifact@v1
doc/_config.yml
@@ -0,0 +1,5 @@
1
+include: [".nojekyll"]
2
+exclude: []
3
+theme: null
4
+highlighter: null
5
+markdown: null
0 commit comments