mirror of
https://github.com/complexcaresolutions/frontend.porwoll.de.git
synced 2026-03-17 16:23:41 +00:00
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 <noreply@anthropic.com>
This commit is contained in:
parent
0046dbcf65
commit
1ad83efbc3
1 changed files with 3 additions and 1 deletions
4
.github/workflows/ci.yml
vendored
4
.github/workflows/ci.yml
vendored
|
|
@ -13,7 +13,9 @@ jobs:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Configure git for private dependencies
|
- 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
|
- uses: pnpm/action-setup@v4
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue