From 8be85cbbd6bfc3349090471b4e95b8ee851e321c Mon Sep 17 00:00:00 2001 From: Zoltan Kochan Date: Wed, 27 May 2026 15:23:42 +0200 Subject: [PATCH] ci(release): clone ldid from ProcursusTeam GitHub mirror (#11990) The upstream `https://gitlab.com/opensource-saurik/ldid.git` is no longer publicly accessible (returns 401 / redirects to sign-in), so `git clone` prompts for a username and fails non-interactively with `could not read Username for 'https://gitlab.com'`. This blocks every v10 release. `ProcursusTeam/ldid` is a maintained GitHub fork that contains the exact commit the workflow pins (c2f8abf), and the libplist submodule already points at github.com, so a one-line URL swap is the full fix. --- Written by an agent (Claude Code, claude-opus-4-7). --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2287bf5694..c60485fa5f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -20,7 +20,7 @@ jobs: sudo apt-get update sudo apt-get install git build-essential libplist-dev libssl-dev openssl qemu-user-binfmt pkg-config cd /tmp - git clone https://gitlab.com/opensource-saurik/ldid.git + git clone https://github.com/ProcursusTeam/ldid.git cd ldid git checkout c2f8abf013b22c335f44241a6a552a7767e73419 git submodule update --init