Skip to content

[FAQ Bot] NEW: Why am I getting TypeError while creating OneHotEncode… #38

[FAQ Bot] NEW: Why am I getting TypeError while creating OneHotEncode…

[FAQ Bot] NEW: Why am I getting TypeError while creating OneHotEncode… #38

Workflow file for this run

name: Build and Deploy FAQ Website
on:
push:
branches: [ main ]
# Sets permissions for GitHub Pages deployment
permissions:
contents: write
pages: write
id-token: write
# Allow only one concurrent deployment
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.12'
- name: Install uv
run: pip install uv
- name: Sync dependencies
run: uv sync
- name: Build static website
run: make website
- name: Setup Pages
uses: actions/configure-pages@v4
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: '_site'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4