* pyarrow pin * make fixup * test? * like this? * like this? * like this? * datasets pin * comment
28 lines
939 B
YAML
28 lines
939 B
YAML
name: Build documentation
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
branches:
|
|
- main
|
|
- doc-builder*
|
|
- v*-release
|
|
- use_templates
|
|
|
|
jobs:
|
|
build:
|
|
uses: huggingface/doc-builder/.github/workflows/build_main_documentation.yml@main
|
|
with:
|
|
commit_sha: ${{ github.sha }}
|
|
package: transformers
|
|
notebook_folder: transformers_doc
|
|
languages: ar de en es fr hi it ko pt tr zh ja te
|
|
custom_container: huggingface/transformers-doc-builder
|
|
# Temporary pin to work around datasets exception in the docbuilder.Remove after docker images and main have
|
|
# the right dependencies (which **should** be the case by 2025-07-20). See
|
|
# https://github.com/huggingface/transformers/actions/runs/16365952006/job/46243081358?pr=38545
|
|
pre_command: uv pip install datasets>=2.15.0
|
|
secrets:
|
|
token: ${{ secrets.HUGGINGFACE_PUSH }}
|
|
hf_token: ${{ secrets.HF_DOC_BUILD_PUSH }}
|