name: Generate Index Page on: push: branches: - main jobs: build: runs-on: ubuntu-latest steps: - name: Checkout code uses: actions/checkout@v3 with: fetch-depth: 0 - name: Set up Python uses: actions/setup-python@v4 with: python-version: '3.x' - name: Install dependencies run: | python -m pip install --upgrade pip - name: Generate index.html run: | cat < index.html H:Mods

H:Mods modules

EOF - name: Deploy to GitHub Pages uses: JamesIves/github-pages-deploy-action@v4 with: branch: main folder: .