Skip to content

Commit c25c37d

Browse files
committed
fix
1 parent 0415b48 commit c25c37d

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

.github/workflows/deploy-docs.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,15 @@ jobs:
3030

3131
- name: Setup Pages
3232
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 .
3342
3443
- name: Upload artifact
3544
uses: actions/upload-pages-artifact@v1

doc/_config.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
include: [".nojekyll"]
2+
exclude: []
3+
theme: null
4+
highlighter: null
5+
markdown: null

0 commit comments

Comments
 (0)