From fa8e7494c6704bb96ec33cfeb2ebde17671192d3 Mon Sep 17 00:00:00 2001 From: bdbch Date: Fri, 29 May 2026 17:25:05 +0200 Subject: [PATCH] fix pages --- .tangled/workflows/pages.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.tangled/workflows/pages.yml b/.tangled/workflows/pages.yml index 298dae7..7b3a18a 100644 --- a/.tangled/workflows/pages.yml +++ b/.tangled/workflows/pages.yml @@ -25,7 +25,12 @@ steps: - name: 'Push to tangled-pages branch' command: | + # Tangled CI only has origin via HTTPS. Pushes require SSH. + # Extract the repo path from the HTTPS URL and convert to SSH format. REMOTE_URL=$(git remote get-url origin) + # e.g. https://knot1.tangled.sh/did:plc:.../ → git@tangled.org:did:plc:... + REMOTE_URL="git@tangled.org:${REMOTE_URL#https://*/}" + REMOTE_URL="${REMOTE_URL%/}" cd apps/docs/out git init git checkout --orphan tangled-pages -- 2.51.2