From 5bf7b18f06d119003547e1d3f8d3bcafc2ae0544 Mon Sep 17 00:00:00 2001 From: Will Anderson Date: Sat, 2 May 2026 15:14:34 -0500 Subject: [PATCH] ci: update el repo clone URL (engram-lang renamed to el) --- .gitea/workflows/deploy.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/deploy.yaml b/.gitea/workflows/deploy.yaml index 517b260..f2ea3d6 100644 --- a/.gitea/workflows/deploy.yaml +++ b/.gitea/workflows/deploy.yaml @@ -34,13 +34,13 @@ jobs: fetch-depth: 1 # foundation/el contains the elc compiler that build-stage.sh shells out - # to. We clone engram-lang directly with git rather than a second + # to. We clone el directly with git rather than a second # actions/checkout call — act_runner v0.6 in host mode hits a # `permission denied` error on .git/objects/pack/*.idx when running # two checkout steps in the same job. EL_HOME is pinned outside the # workspace so the path build-stage.sh expects (../../foundation/el) # resolves correctly. - - name: Clone engram-lang (foundation/el — provides the elc compiler) + - name: Clone el (foundation/el — provides the elc compiler) env: CHECKOUT_TOKEN: ${{ secrets.CHECKOUT_TOKEN }} run: | @@ -48,7 +48,7 @@ jobs: DEST="${{ github.workspace }}/../foundation-el" rm -rf "$DEST" git clone --depth 1 \ - "https://will:${CHECKOUT_TOKEN}@git.neuralplatform.ai/neuron-technologies/engram-lang.git" \ + "https://will:${CHECKOUT_TOKEN}@git.neuralplatform.ai/neuron-technologies/el.git" \ "$DEST" ls -la "$DEST" | head -5 echo "EL_HOME=$DEST" >> "$GITHUB_ENV"