From f20d953efbb3f0532923443143280945c202a06c Mon Sep 17 00:00:00 2001 From: aspel Date: Sat, 15 Jun 2024 20:16:24 +0300 Subject: [PATCH] remove spec directory /Applications/PathOfBuilding.app: bundle format unrecognized, invalid, or unsuitable In subcomponent: /Applications/PathOfBuilding.app/Contents/MacOS/spec/TestBuilds/3.13 Signed-off-by: aspel --- .github/workflows/main.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index d3e1b43..e269385 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -70,7 +70,7 @@ jobs: - run: brew install make - run: make - name: Package tar.xz archive - run: tar -cf - PathOfBuilding.app | xz -c > PathOfBuilding.darwin.amd64.tar.xz + run: tar --exclude='PathOfBuilding.app/Contents/MacOS/spec' -cf - PathOfBuilding.app | xz -c > PathOfBuilding.darwin.amd64.tar.xz - name: Cheking GUI env: IMGUR_CLIENT_ID: ${{ secrets.IMGUR_CLIENT_ID }} @@ -110,7 +110,7 @@ jobs: - run: brew install make - run: make - name: Package tar.xz archive - run: tar -cf - PathOfBuilding.app | xz -c > PathOfBuilding.darwin.arm64.tar.xz + run: tar --exclude='PathOfBuilding.app/Contents/MacOS/spec' -cf - PathOfBuilding.app | xz -c > PathOfBuilding.darwin.arm64.tar.xz - name: Cheking GUI env: IMGUR_CLIENT_ID: ${{ secrets.IMGUR_CLIENT_ID }}