Skip to content

Commit fe787ce

Browse files
committed
Fix check notarization workflow
1 parent 336186f commit fe787ce

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.github/scripts/sign-osx-distro-file.sh

+3
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,9 @@ done
7777
# sign libsnappyjava.jnilib inside snappy-java.jar
7878
signExecutableInsideJar ".*/snappy-java.*\.jar$" "libsnappyjava.jnilib" ".*/libsnappyjava\.jnilib$"
7979

80+
# sign libjnidispatch.jnilib.jnilib inside jna.jar
81+
signExecutableInsideJar ".*/jna-\d+.*\.jar$" "libjnidispatch.jnilib.jnilib" ".*/libjnidispatch\.jnilib$"
82+
8083
# Sign the app
8184
ls -la ${dir}/${destination_folder_name}/SpringToolSuite4.app/
8285
codesign --verbose --deep --force --timestamp --entitlements "${entitlements}" --options=runtime --keychain "${KEYCHAIN}" -s "${MACOS_CERTIFICATE_ID}" ${dir}/${destination_folder_name}/SpringToolSuite4.app

.github/workflows/check-notarization.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ jobs:
1515
steps:
1616
- name: Notarization Logs
1717
run: |
18-
xcrun notarytool log ${{ inputs.id }} --apple-id ${{ secrets.AC_USERNAME }} --team-id ${{ secrets.APPLE_TEAM_ID }} --password ${{ secrets.AC_PASSWORD }}
18+
xcrun notarytool log ${{ inputs.id }} --apple-id ${{ secrets.VMWARE_APPLE_USER }} --team-id ${{ secrets.VMWARE_APPLE_TEAM_ID }} --password ${{ secrets.VMWARE_APPLE_PASSWORD }}

0 commit comments

Comments
 (0)