mirror of
https://github.com/huggingface/diffusers.git
synced 2026-01-27 17:22:53 +03:00
* first pass at docs structure * minor reformatting, add github actions for docs * populate docs (primarily from README, some writing)
18 lines
338 B
YAML
18 lines
338 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: diffusers
|
|
secrets:
|
|
token: ${{ secrets.HUGGINGFACE_PUSH }}
|