diff --git a/.github/workflows/build-sign-notarize.yml b/.github/workflows/build-sign-notarize.yml index b3a5a21..7166242 100644 --- a/.github/workflows/build-sign-notarize.yml +++ b/.github/workflows/build-sign-notarize.yml @@ -208,15 +208,18 @@ jobs: # Notarize. Can take up to 10 minutes (and fail) asynchronously # sometimes this might fail because exact the same zip has been uploaded already + - name: notarize .app arm64 - run: xcrun altool --notarize-app --username "$APPLE_ID" --password "$APPLE_PASSWORD" --primary-bundle-id "xyz.tea.gui" --file dist/$ZIP_FILE || true + run: xcrun notarytool submit dist/$ZIP_FILE --keychain-profile "xyz.tea.gui" --username "$APPLE_ID" --password "$APPLE_PASSWORD" --wait || true + # run: xcrun altool --notarize-app --username "$APPLE_ID" --password "$APPLE_PASSWORD" --primary-bundle-id "xyz.tea.gui" --file dist/$ZIP_FILE || true env: APPLE_ID: ${{ secrets.APPLE_ID }} APPLE_PASSWORD: ${{ secrets.APPLE_PASSWORD }} ZIP_FILE: ${{ steps.app_files.outputs.zip_arm64 }} - name: notarize .app x86+64 - run: xcrun altool --notarize-app --username "$APPLE_ID" --password "$APPLE_PASSWORD" --primary-bundle-id "xyz.tea.gui" --file dist/$ZIP_FILE || true + run: xcrun notarytool submit dist/$ZIP_FILE --keychain-profile "xyz.tea.gui" --username "$APPLE_ID" --password "$APPLE_PASSWORD" --wait || true + # run: xcrun altool --notarize-app --username "$APPLE_ID" --password "$APPLE_PASSWORD" --primary-bundle-id "xyz.tea.gui" --file dist/$ZIP_FILE || true env: APPLE_ID: ${{ secrets.APPLE_ID }} APPLE_PASSWORD: ${{ secrets.APPLE_PASSWORD }} diff --git a/modules/desktop/package.json b/modules/desktop/package.json index cad63ae..a0f2b0c 100644 --- a/modules/desktop/package.json +++ b/modules/desktop/package.json @@ -1,6 +1,6 @@ { "name": "tea", - "version": "0.2.23", + "version": "0.2.24", "private": true, "description": "tea gui app", "author": "tea.xyz",