diff --git a/.github/workflows/release_test.yml b/.github/workflows/release_test.yml index bb90ad3be..4f8a35607 100644 --- a/.github/workflows/release_test.yml +++ b/.github/workflows/release_test.yml @@ -145,6 +145,15 @@ jobs: run: | xcrun notarytool store-credentials "Chat2DB" --apple-id "${{ secrets.MAC_APPLE_ID }}" --password "${{ secrets.MAC_APPLE_PASSWORD }}" --team-id "${{ secrets.MAC_TEAM_ID }}" xcrun notarytool submit chat2db-client/release/Chat2DB-Test-99.0.${{ github.run_id }}-Test.dmg --keychain-profile "Chat2DB" + + - name: Notarize MacOS ARM64 App + if: matrix.os == 'macos-latest' && matrix.arch == 'arm64' + run: | + xcrun notarytool store-credentials "Chat2DB" --apple-id "${{ secrets.MAC_APPLE_ID }}" --password "${{ secrets.MAC_APPLE_PASSWORD }}" --team-id "${{ secrets.MAC_TEAM_ID }}" + xcrun notarytool submit chat2db-client/release/Chat2DB-Test-99.0.${{ github.run_id }}-Test-arm64.dmg --keychain-profile "Chat2DB" + + + # Build Jar包 - name: Prepare upload for Jar