From 9295f84a85128dcf5e8e83d197987a4d4ae41cbc Mon Sep 17 00:00:00 2001 From: danceratopz Date: Mon, 8 Jun 2026 16:11:53 +0200 Subject: [PATCH] chore(ci,docs): archive eest.ethereum.org and stop docs redeploys `eest.ethereum.org` is being archived in favor of the unified docs at https://steel.ethereum.foundation/docs/execution-specs/. Remove the `mike` deploy workflow so a push to `main` or a version tag can no longer rebuild and overwrite the static archive tombstone on `gh-pages`, and note the docs-site redirect in the README. --- .github/workflows/docs_deploy.yaml | 49 ------------------------------ README.md | 1 + 2 files changed, 1 insertion(+), 49 deletions(-) delete mode 100644 .github/workflows/docs_deploy.yaml diff --git a/.github/workflows/docs_deploy.yaml b/.github/workflows/docs_deploy.yaml deleted file mode 100644 index d05864e8add..00000000000 --- a/.github/workflows/docs_deploy.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: Deploy Docs - -permissions: - pages: write # Required for deploying to GitHub Pages with `secrets.GITHUB_TOKEN` - -on: - push: - tags: - - "v[0-9]+.[0-9]+.[0-9]+*" # Push events to matching v*, i.e. v1.0, v20.15.10, v0.1.1a1 - branches: - - main - -jobs: - deploy: - if: github.repository_owner == 'ethereum' # don't run on forks - runs-on: ubuntu-latest - - steps: - - name: Checkout - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 - with: - fetch-depth: 0 - ssh-key: ${{secrets.GH_ACTIONS_DEPLOY_KEY}} - - name: Build transition tool - uses: ./.github/actions/build-evm-base - with: - id: evm-builder - type: stable - - name: Install uv ${{ vars.UV_VERSION }} and python ${{ vars.DEFAULT_PYTHON_VERSION }} - uses: astral-sh/setup-uv@0c5e2b8115b80b4c7c5ddf6ffdd634974642d182 - with: - enable-cache: true - cache-dependency-glob: "uv.lock" - version: ${{ vars.UV_VERSION }} - python-version: ${{ vars.DEFAULT_PYTHON_VERSION }} - - name: Install EEST and dependencies - run: uv sync --extra=docs --no-progress - - name: Setup doc deploy - run: | - git config --global user.name "github-actions[bot]" - git config --global user.email github-actions[bot]@users.noreply.github.com - - name: Build and deploy docs to gh-pages - if: ${{ github.ref_type == 'branch' }} - run: | - uv run mike deploy --update-aliases --push --remote origin main development - - name: Build and deploy docs to gh-pages - if: ${{ github.ref_type == 'tag' }} - run: | - uv run mike deploy --push --remote origin ${{ github.ref_name }} diff --git a/README.md b/README.md index 2dd462a11ba..2466cad1b3f 100644 --- a/README.md +++ b/README.md @@ -8,6 +8,7 @@ As such, this repository is no longer accepting pull requests as of 2025-11-01. - **Test Contributors:** - Please direct PRs to [ethereum/execution-specs](https://github.com/ethereum/execution-specs). - Read more about the changes effecting test development in our [blog announcement](https://steel.ethereum.foundation/blog/2025-11-04_weld_final/). +- **Documentation:** [eest.ethereum.org](https://eest.ethereum.org) is archived and now redirects to its new home at [steel.ethereum.foundation/docs/execution-specs](https://steel.ethereum.foundation/docs/execution-specs/). ### Questions or Feedback About the Migration?