From 653e5a76237d9859bb7bef331301e383a633b74a Mon Sep 17 00:00:00 2001 From: Bloxster Date: Fri, 26 Jun 2026 16:42:14 +0200 Subject: [PATCH] ci(docs): retire release/3.4 docs deploy (moved to release/3.5) The public docs site (docs.erigon.tech) now publishes from release/3.5, which carries its own docs-deploy.yml. Removing this workflow so a push to release/3.4 no longer redeploys and clobbers the v3.5 site (both used the shared github-pages environment). Co-Authored-By: Claude Opus 4.8 (1M context) --- .github/workflows/docs-deploy.yml | 67 ------------------------------- 1 file changed, 67 deletions(-) delete mode 100644 .github/workflows/docs-deploy.yml 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