From dbf4a12c80dc73bcc8175fcf1119394e7fec5f8f Mon Sep 17 00:00:00 2001 From: Destroyer795 Date: Thu, 12 Mar 2026 10:56:54 +0530 Subject: [PATCH] fix: git credentials setup --- .github/workflows/ci.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index dc7cdba..ec7a4be 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -55,6 +55,9 @@ jobs: - name: Checkout uses: actions/checkout@v4 + - name: Set up Git credentials + run: git config --global url."https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/".insteadOf "https://github.com/" + - name: Setup Node.js 20 uses: actions/setup-node@v4 with: @@ -115,6 +118,9 @@ jobs: - name: Checkout uses: actions/checkout@v4 + - name: Set up Git credentials + run: git config --global url."https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/".insteadOf "https://github.com/" + - name: Setup Node.js 20 uses: actions/setup-node@v4 with: