From b532519ad79bbb96cc9b208289bc6a1061739d80 Mon Sep 17 00:00:00 2001 From: Will Anderson Date: Sat, 9 May 2026 18:45:57 -0500 Subject: [PATCH] Fix stage SDK extraction: use ci-base:latest and repo runtime MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ci-base:stage tag doesn't exist — only :latest and :dev do. Also apply the same EL_RUNTIME fix as dev.yaml: point at workspace runtime/ so stage picks up the web stub forward declarations. --- .gitea/workflows/stage.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/stage.yaml b/.gitea/workflows/stage.yaml index e470d9e..8370970 100644 --- a/.gitea/workflows/stage.yaml +++ b/.gitea/workflows/stage.yaml @@ -117,14 +117,14 @@ jobs: if: steps.changetype.outputs.asset_only != 'true' run: | set -euo pipefail - docker pull us-central1-docker.pkg.dev/neuron-785695/neuron-ci/ci-base:stage - CID=$(docker create us-central1-docker.pkg.dev/neuron-785695/neuron-ci/ci-base:stage) + docker pull us-central1-docker.pkg.dev/neuron-785695/neuron-ci/ci-base:latest + CID=$(docker create us-central1-docker.pkg.dev/neuron-785695/neuron-ci/ci-base:latest) sudo mkdir -p /opt/el docker cp "$CID:/opt/el" /opt/ docker rm "$CID" echo "ELB=/opt/el/dist/bin/elb" >> "$GITHUB_ENV" echo "ELC=/opt/el/dist/platform/elc" >> "$GITHUB_ENV" - echo "EL_RUNTIME=/opt/el/el-compiler/runtime" >> "$GITHUB_ENV" + echo "EL_RUNTIME=$GITHUB_WORKSPACE/runtime" >> "$GITHUB_ENV" # ── Build neuron-web binary ───────────────────────────────────────────