Skip to content

Created using Colab #208

Created using Colab

Created using Colab #208

Workflow file for this run

name: Deploy Docs
on:
push:
branches: [ main ]
permissions:
contents: read
pages: write
id-token: write
jobs:
deploy:
runs-on: ubuntu-latest
environment:
name: github-pages # ✅ Required to trigger the GitHub Pages deployment
steps:
- uses: actions/checkout@v4
- name: Setup Pages
uses: actions/configure-pages@v4
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: './docs' # Make sure this is the directory with your index.md
- name: Deploy to GitHub Pages
uses: actions/deploy-pages@v4