From af2cfbe370f29baea0277c3c0814f108e22af54e Mon Sep 17 00:00:00 2001 From: Daiki Nishikawa Date: Wed, 19 Apr 2023 13:54:38 +0900 Subject: [PATCH] chore: suppress support longpaths steps in ubuntu-latest (#4390) --- .github/workflows/main.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index e5082337eb3..523cabe246d 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -145,7 +145,9 @@ jobs: os: [windows-latest, ubuntu-latest] steps: + # ref: https://github.com/orgs/community/discussions/26952 - name: Support longpaths + if: matrix.os == 'windows-latest' run: git config --system core.longpaths true - name: Checkout repository uses: actions/checkout@v3