Skip to content

add .nojekyll

add .nojekyll #4

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches:
- docs # Change this to your main branch name
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.x
- name: Install dependencies
run: pip install mkdocs # Replace with the command to install your documentation tool
- name: Build site
run: mkdocs build # Replace with the command to build your documentation
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
deploy_key: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ../docs/build/html # Replace with the path to your documentation build directory