diff --git a/.github/workflows/artifacts.yml b/.github/workflows/artifacts.yml index 9ce806d3..51dec8e0 100644 --- a/.github/workflows/artifacts.yml +++ b/.github/workflows/artifacts.yml @@ -19,7 +19,6 @@ jobs: with: command: | export VERSION_NAME="${GITHUB_REF##*/}-${GITHUB_SHA##*/}" - git config --global --add safe.directory "$GITHUB_WORKSPACE" ./package-release.sh ${VERSION_NAME} build --no-package echo "VERSION_NAME=${VERSION_NAME}" >> $GITHUB_ENV diff --git a/.github/workflows/test-build-linux.yml b/.github/workflows/test-build-linux.yml index cd22fc23..69b05d13 100644 --- a/.github/workflows/test-build-linux.yml +++ b/.github/workflows/test-build-linux.yml @@ -21,7 +21,6 @@ jobs: uses: Joshua-Ashton/arch-mingw-github-action@v7 with: command: | - git config --global --add safe.directory "$GITHUB_WORKSPACE" meson -Denable_tests=True -Denable_extras=True --cross-file=build-win32.txt --buildtype release build-mingw-x86 ninja -C build-mingw-x86 @@ -30,7 +29,6 @@ jobs: uses: Joshua-Ashton/arch-mingw-github-action@v7 with: command: | - git config --global --add safe.directory "$GITHUB_WORKSPACE" meson -Denable_tests=True -Denable_extras=True --cross-file=build-win64.txt --buildtype release build-mingw-x64 ninja -C build-mingw-x64 @@ -42,7 +40,6 @@ jobs: export CC="gcc -m32" export CXX="g++ -m32" export PKG_CONFIG_PATH="/usr/lib32/pkgconfig:/usr/lib/i386-linux-gnu/pkgconfig:/usr/lib/pkgconfig" - git config --global --add safe.directory "$GITHUB_WORKSPACE" meson -Denable_tests=True -Denable_extras=True --buildtype release build-native-gcc-x86 ninja -C build-native-gcc-x86 @@ -53,7 +50,6 @@ jobs: command: | export CC="gcc" export CXX="g++" - git config --global --add safe.directory "$GITHUB_WORKSPACE" meson -Denable_tests=True -Denable_extras=True --buildtype release build-native-gcc-x64 ninja -C build-native-gcc-x64 @@ -65,7 +61,6 @@ jobs: export CC="clang -m32" export CXX="clang++ -m32" export PKG_CONFIG_PATH="/usr/lib32/pkgconfig:/usr/lib/i386-linux-gnu/pkgconfig:/usr/lib/pkgconfig" - git config --global --add safe.directory "$GITHUB_WORKSPACE" meson -Denable_tests=True -Denable_extras=True --buildtype release build-native-clang-x86 ninja -C build-native-clang-x86 @@ -76,6 +71,5 @@ jobs: command: | export CC="clang" export CXX="clang++" - git config --global --add safe.directory "$GITHUB_WORKSPACE" meson -Denable_tests=True -Denable_extras=True --buildtype release build-native-clang-x64 ninja -C build-native-clang-x64