From 3d8fe47270b55f6f11bba35027a71cdc7ac010b2 Mon Sep 17 00:00:00 2001 From: DJ2LS <75909252+DJ2LS@users.noreply.github.com> Date: Sat, 21 Jan 2023 13:18:16 +0100 Subject: [PATCH] another attempt remove all .git folders --- .github/workflows/build_multiplatform.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build_multiplatform.yml b/.github/workflows/build_multiplatform.yml index 7bc5c037..e58efbcc 100644 --- a/.github/workflows/build_multiplatform.yml +++ b/.github/workflows/build_multiplatform.yml @@ -290,8 +290,6 @@ jobs: if: ${{startsWith(matrix.os, 'macos')}} working-directory: tnc run: | - # remove .git folder from codec2 which causes app signing to fail - ls -R # now build tnc binaries pyinstaller -y freedata.spec # and to some final cleanup @@ -350,8 +348,9 @@ jobs: - name: cleanup on macos before code signing if: ${{startsWith(matrix.os, 'macos')}} run: | - # find . -type d -name .git -exec rm -r {} \; - find . -type d -name .git -delete + ls -l + find . -type d -name .git -exec rm -r {} \; + # find . -type d -name .git -delete - name: Build/release Electron app uses: samuelmeuli/action-electron-builder@v1