Skip to content

Commit cbaf6ef

Browse files
committed
chore: add .nojekyll file for GitHub Pages deployment
1 parent ec004a7 commit cbaf6ef

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

.github/workflows/deploy.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,11 @@ jobs:
7171
task build-production
7272
echo "✅ Production landing page built successfully"
7373
74+
- name: Add .nojekyll file
75+
run: |
76+
touch ./site/.nojekyll
77+
echo "✅ Added .nojekyll file for GitHub Pages"
78+
7479
- name: Upload Pages artifact
7580
uses: actions/upload-pages-artifact@v3
7681
with:

Taskfile.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,8 @@ tasks:
4747
cmds:
4848
- echo "Building production landing page..."
4949
- mkdocs build --strict --clean --verbose
50+
- touch site/.nojekyll
51+
- echo "✅ Added .nojekyll file for GitHub Pages"
5052
- echo "Production build complete!"
5153

5254
deploy:

0 commit comments

Comments
 (0)