ci: use GITHUB_TOKEN for cross-repo engram-lang checkout
Deploy marketing to Cloud Run / deploy (push) Failing after 37s

Gitea Actions auto-issues GITHUB_TOKEN per workflow run; the previous
GITEA_TOKEN reference evaluated to literal text and broke the checkout.
This commit is contained in:
Will Anderson
2026-05-02 12:52:49 -05:00
parent b29ac61005
commit 248ff89230
+4 -1
View File
@@ -42,7 +42,10 @@ jobs:
repository: neuron-technologies/engram-lang
path: engram-lang
fetch-depth: 1
token: ${{ secrets.GITEA_TOKEN }}
# Gitea Actions auto-issues GITHUB_TOKEN scoped to the workflow run.
# That token has read access to other repos in the same org by
# default, so cross-repo checkout just works.
token: ${{ secrets.GITHUB_TOKEN }}
- name: Stage engram-lang as foundation/el for build-stage.sh
run: |