From a381aed5123cfe4f0b4bee102d4bd6b68979286d Mon Sep 17 00:00:00 2001 From: David Corvoysier Date: Fri, 21 Feb 2025 10:17:55 +0000 Subject: [PATCH] ci: temporarily remove documentation workflows --- .github/workflows/build_documentation.yaml | 20 ------------------- .github/workflows/build_pr_documentation.yaml | 19 ------------------ 2 files changed, 39 deletions(-) delete mode 100644 .github/workflows/build_documentation.yaml delete mode 100644 .github/workflows/build_pr_documentation.yaml diff --git a/.github/workflows/build_documentation.yaml b/.github/workflows/build_documentation.yaml deleted file mode 100644 index 4d0b19a3..00000000 --- a/.github/workflows/build_documentation.yaml +++ /dev/null @@ -1,20 +0,0 @@ -name: Build documentation - -on: - push: - paths: - - "docs/source/**" - 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: - hf_token: ${{ secrets.HF_DOC_BUILD_PUSH }} diff --git a/.github/workflows/build_pr_documentation.yaml b/.github/workflows/build_pr_documentation.yaml deleted file mode 100644 index a5ce39a5..00000000 --- a/.github/workflows/build_pr_documentation.yaml +++ /dev/null @@ -1,19 +0,0 @@ -name: Build PR Documentation - -on: - pull_request: - paths: - - "docs/source/**" - -concurrency: - group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} - cancel-in-progress: true - -jobs: - build: - uses: huggingface/doc-builder/.github/workflows/build_pr_documentation.yml@main - with: - commit_sha: ${{ github.event.pull_request.head.sha }} - pr_number: ${{ github.event.number }} - package: text-generation-inference - additional_args: --not_python_module