From c618776f7642feec6015713f3cd89d0bf6d843ff Mon Sep 17 00:00:00 2001 From: CCS Admin Date: Sun, 15 Feb 2026 18:17:19 +0000 Subject: [PATCH] fix(ci): rewrite git SSH to HTTPS for private dependency access pnpm resolves github: deps via git@github.com: (SSH), which fails without SSH keys. Rewrite to HTTPS with GH_PAT token instead. Co-Authored-By: Claude Opus 4.6 --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 493c0ea..5173a06 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,7 +13,9 @@ jobs: - uses: actions/checkout@v4 - name: Configure git for private dependencies - run: git config --global url."https://x-access-token:${{ secrets.GH_PAT }}@github.com/".insteadOf "github:" + run: | + git config --global url."https://x-access-token:${{ secrets.GH_PAT }}@github.com/".insteadOf "git@github.com:" + git config --global url."https://x-access-token:${{ secrets.GH_PAT }}@github.com/".insteadOf "github:" - uses: pnpm/action-setup@v4