Disable Jekyll processing on GitHub Pages

This commit is contained in:
Gabriel Roldan 2025-12-06 21:07:18 -03:00 committed by Gabriel Roldan
parent 2a16159670
commit da9468a980

View File

@ -104,6 +104,12 @@ echo ""
echo "📚 Building documentation..." echo "📚 Building documentation..."
mkdocs build --verbose --strict mkdocs build --verbose --strict
# Disable Jekyll processing on GitHub Pages
echo ""
echo "🚫 Disabling Jekyll processing..."
touch site/.nojekyll
echo "✅ Created .nojekyll file"
# Add preview metadata if preview build # Add preview metadata if preview build
if [ -n "$BANNER_MESSAGE" ]; then if [ -n "$BANNER_MESSAGE" ]; then
echo "<!-- Preview build -->" >> site/index.html echo "<!-- Preview build -->" >> site/index.html