diff --git a/.github/workflows/docs-deploy.yml b/.github/workflows/docs-deploy.yml deleted file mode 100644 index 574c0623953..00000000000 --- a/.github/workflows/docs-deploy.yml +++ /dev/null @@ -1,67 +0,0 @@ -name: Deploy Docs - -on: - push: - branches: - - release/3.4 - paths: - - 'docs/site/**' - - # Allow manual trigger from Actions tab - workflow_dispatch: - -permissions: - contents: read - pages: write - id-token: write - -concurrency: - group: docs-pages - cancel-in-progress: true - -jobs: - build: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v6 - - - uses: actions/setup-python@v5 - with: - python-version: '3.11' - - - name: Verify llms.txt artifacts are up to date - run: | - python3 docs/site/scripts/generate-llms.py --check - python3 -m unittest discover docs/site/scripts -v - - - uses: actions/setup-node@v6 - with: - node-version: '20' - cache: npm - cache-dependency-path: docs/site/package-lock.json - - - name: Install dependencies - run: npm ci - working-directory: docs/site - - - name: Build - run: npm run build - working-directory: docs/site - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - - name: Upload Pages artifact - uses: actions/upload-pages-artifact@v5 - with: - path: docs/site/build - - deploy: - needs: build - runs-on: ubuntu-latest - environment: - name: github-pages - url: ${{ steps.deployment.outputs.page_url }} - steps: - - name: Deploy to GitHub Pages - id: deployment - uses: actions/deploy-pages@v5