From 2f1abc2cf91cfdc974bde4c1d2645c9f731f8148 Mon Sep 17 00:00:00 2001 From: nateraw Date: Tue, 4 Oct 2022 16:38:26 -0400 Subject: [PATCH] :construction_worker: add build_documentation workflow --- .github/workflows/build_documentation.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/build_documentation.yml diff --git a/.github/workflows/build_documentation.yml b/.github/workflows/build_documentation.yml new file mode 100644 index 00000000..11a98490 --- /dev/null +++ b/.github/workflows/build_documentation.yml @@ -0,0 +1,21 @@ +name: Build documentation + +on: + push: + branches: + - master + - doc-builder* + - v*-release + +jobs: + build: + uses: huggingface/doc-builder/.github/workflows/build_main_documentation.yml@main + with: + commit_sha: ${{ github.sha }} + package: pytorch-image-models + package_name: timm + repo_owner: rwightman + path_to_docs: pytorch-image-models/hfdocs/source + additional_args: --not_python_module + secrets: + token: ${{ secrets.HUGGINGFACE_PUSH }}