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 "##########################################################"