Skip to content

fix(notebook/kaggle): qwen in pass*_quality dropdowns + translate cmd… #28

fix(notebook/kaggle): qwen in pass*_quality dropdowns + translate cmd…

fix(notebook/kaggle): qwen in pass*_quality dropdowns + translate cmd… #28

Workflow file for this run

# =============================================================================
# Deploy WhisperJAV Documentation to GitHub Pages
# =============================================================================
# Triggers on push to main when docs/ or mkdocs.yml change.
# Uses MkDocs Material to build and deploy to GitHub Pages.
#
# Setup required (one-time):
# 1. Go to repo Settings → Pages → Source → "GitHub Actions"
# 2. That's it. First push to main will create the gh-pages branch.
# =============================================================================
name: Deploy Documentation
on:
push:
branches:
- main
paths:
- 'docs/**'
- 'mkdocs.yml'
workflow_dispatch: # Allow manual trigger
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install MkDocs Material + i18n
run: pip install mkdocs-material mkdocs-static-i18n
- name: Build and Deploy
run: mkdocs gh-deploy --force