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 ec004a7 commit cbaf6efCopy full SHA for cbaf6ef
.github/workflows/deploy.yml
@@ -71,6 +71,11 @@ jobs:
71
task build-production
72
echo "✅ Production landing page built successfully"
73
74
+ - name: Add .nojekyll file
75
+ run: |
76
+ touch ./site/.nojekyll
77
+ echo "✅ Added .nojekyll file for GitHub Pages"
78
+
79
- name: Upload Pages artifact
80
uses: actions/upload-pages-artifact@v3
81
with:
Taskfile.yml
@@ -47,6 +47,8 @@ tasks:
47
cmds:
48
- echo "Building production landing page..."
49
- mkdocs build --strict --clean --verbose
50
+ - touch site/.nojekyll
51
+ - echo "✅ Added .nojekyll file for GitHub Pages"
52
- echo "Production build complete!"
53
54
deploy:
0 commit comments