mirror of
https://github.com/huggingface/text-generation-inference.git
synced 2025-04-26 04:22:08 +00:00
I added ToC for docs v1 & started setting up for doc-builder. cc @Narsil @osanseviero --------- Co-authored-by: Steven Liu <59462357+stevhliu@users.noreply.github.com> Co-authored-by: osanseviero <osanseviero@gmail.com> Co-authored-by: Mishig <mishig.davaadorj@coloradocollege.edu>
19 lines
445 B
YAML
19 lines
445 B
YAML
name: Build documentation
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
- doc-builder*
|
|
- v*-release
|
|
|
|
jobs:
|
|
build:
|
|
uses: huggingface/doc-builder/.github/workflows/build_main_documentation.yml@main
|
|
with:
|
|
commit_sha: ${{ github.sha }}
|
|
package: text-generation-inference
|
|
additional_args: --not_python_module
|
|
secrets:
|
|
token: ${{ secrets.HUGGINGFACE_PUSH }}
|
|
hf_token: ${{ secrets.HF_DOC_BUILD_PUSH }} |