From dccb4ef072493d0aa719f8f91ed96c7c8a6f4689 Mon Sep 17 00:00:00 2001 From: Armin Schrenk Date: Fri, 20 Feb 2026 17:03:00 +0100 Subject: [PATCH] disable gits safe directory --- .github/workflows/linux-makepkg.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/linux-makepkg.yml b/.github/workflows/linux-makepkg.yml index f43414d93..784080196 100644 --- a/.github/workflows/linux-makepkg.yml +++ b/.github/workflows/linux-makepkg.yml @@ -122,7 +122,9 @@ jobs: sudo -u builder gpg --batch --keyserver hkps://keyserver.ubuntu.com --recv-keys 58117AFA1F85B3EEC154677D615D449FE6E6A235 || sudo -u builder gpg --batch --keyserver hkps://keys.openpgp.org --recv-keys 58117AFA1F85B3EEC154677D615D449FE6E6A235 - name: Checkout release branch - run: git checkout -b release/${VERSION} + run: | + git config --global safe.directory '*' + git checkout -b release/${VERSION} env: VERSION: ${{ needs.get-version.outputs.semVerStr }} - name: Determine pkgrel