From 308708eb3e129bb77f3d2bb93d5c745a5f438332 Mon Sep 17 00:00:00 2001 From: FriwiDev Date: Fri, 25 Feb 2022 15:05:19 +0100 Subject: [PATCH] Try to fix notarization --- .github/workflows/build-macosx-amd64.yml | 2 +- macosx_notarize.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-macosx-amd64.yml b/.github/workflows/build-macosx-amd64.yml index 546c031..a1dd6cb 100644 --- a/.github/workflows/build-macosx-amd64.yml +++ b/.github/workflows/build-macosx-amd64.yml @@ -47,7 +47,7 @@ jobs: name: Build run: | chmod +x compile_macosx.sh - ./compile_macosx.sh amd64 Release ${{ github.event.inputs.repo }} ${{ github.event.inputs.ref }} "${{ secrets.APPLE_BUILD_CERTIFICATE_NAME }}" "${{ secrets.APPLE_TEAM_NAME }}" "${{ secrets.APPLE_ID }}" "${{ secrets.APPLE_PASSWORD }}" + ./compile_macosx.sh amd64 Release ${{ github.event.inputs.repo }} ${{ github.event.inputs.ref }} "${{ secrets.APPLE_BUILD_CERTIFICATE_NAME }}" ${{ secrets.APPLE_TEAM_NAME }} ${{ secrets.APPLE_ID }} ${{ secrets.APPLE_PASSWORD }} - name: Clean up keychain if: ${{ always() }} run: | diff --git a/macosx_notarize.sh b/macosx_notarize.sh index 418826f..7ad94d9 100755 --- a/macosx_notarize.sh +++ b/macosx_notarize.sh @@ -69,6 +69,6 @@ fi xcrun stapler staple "$1" # clean up -rm -f $APP_NAME.zip +rm -f "$APP_NAME.zip" echo "##########################################################"