Skip to content

Update links in chatbot.md topics section #11

Update links in chatbot.md topics section

Update links in chatbot.md topics section #11

Workflow file for this run

name: deploy-book
on:
push:
branches:
- main
jobs:
deploy-book:
runs-on: ubuntu-latest
permissions:
pages: write
id-token: write
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.9
uses: actions/setup-python@v5
with:
python-version: 3.9
cache: pip
- name: Install dependencies
run: pip install -r requirements.txt
- name: Build the book
run: |
jupyter-book build .
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: "_build/html"
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4