Adds support for bypassing GitHub Pages Jekyll processing (#738)

This commit is contained in:
Rohan Deb Sarkar 2022-07-02 07:07:54 +05:30 committed by GitHub
parent 7c742c53ef
commit 6b61236d37
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -102,6 +102,9 @@ find . -maxdepth 1 ! -name '_site' ! -name '.git' ! -name 'CNAME' ! -name '.giti
mv _site/* .
rm -R _site/
# Create `.nojekyll` file (bypass GitHub Pages Jekyll processing)
touch .nojekyll
# Push to DEPLOY_BRANCH
git add -fA
git commit --allow-empty -m "$(git log -1 --pretty=%B) [ci skip]"