From bade7b1f72632ed76559e02628608442bde562b1 Mon Sep 17 00:00:00 2001 From: Gustavo Brunoro Date: Sun, 5 Jan 2025 18:16:30 -0300 Subject: [PATCH] fix: git config to support accents --- .github/workflows/index-collection.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/index-collection.yaml b/.github/workflows/index-collection.yaml index d7e679cd..fd8bb96c 100644 --- a/.github/workflows/index-collection.yaml +++ b/.github/workflows/index-collection.yaml @@ -16,8 +16,9 @@ jobs: steps: - name: Checkout repository uses: actions/checkout@v4 - - name: Make sure the indexer is on the latest ref of the PR branch + - name: Make sure all git refs and configs are there run: | + git config core.quotePath false git fetch origin ${{ github.event.pull_request.head.ref }}:${{ github.event.pull_request.head.ref }} git fetch origin main:main git checkout ${{ github.event.pull_request.head.ref }}