From ae7365f65ba778886c34583060002592cd5ed500 Mon Sep 17 00:00:00 2001 From: Callmeiks Date: Sun, 12 Apr 2026 17:46:53 -0700 Subject: [PATCH] remove docs workflow --- .github/workflows/docs.yml | 51 -------------------------------------- 1 file changed, 51 deletions(-) delete mode 100644 .github/workflows/docs.yml diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml deleted file mode 100644 index baa2123..0000000 --- a/.github/workflows/docs.yml +++ /dev/null @@ -1,51 +0,0 @@ -name: docs - -on: - push: - branches: [main] - paths: - - "docs/**" - - "mkdocs.yml" - - "scripts/generate_docs.py" - - "src/tikhub/**" - - "spec/openapi.json" - workflow_dispatch: - -permissions: - contents: read - pages: write - id-token: write - -concurrency: - group: docs-${{ github.ref }} - cancel-in-progress: true - -jobs: - build: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - uses: actions/setup-python@v5 - with: - python-version: "3.12" - - name: Install - run: | - python -m pip install --upgrade pip - pip install -e ".[docs,cli]" - - name: Regenerate API reference - run: python scripts/generate_docs.py - - name: Build site - run: mkdocs build --strict - - uses: actions/upload-pages-artifact@v3 - with: - path: site - - deploy: - needs: build - runs-on: ubuntu-latest - environment: - name: github-pages - url: ${{ steps.deployment.outputs.page_url }} - steps: - - id: deployment - uses: actions/deploy-pages@v4