File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed
Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 9797 security import certificate.p12 -k build.keychain -P "${{ secrets.CERTIFICATE_PASSWORD }}" -T /usr/bin/codesign
9898 security set-key-partition-list -S apple-tool:,apple:,codesign: -s -k "${{ secrets.KEYCHAIN_PASSWORD }}" build.keychain
9999
100- - name : codesign dylib
100+ - name : codesign and notarize dylib
101101 if : matrix.os == 'macos-15' && matrix.name != 'apple-xcframework'
102- run : codesign --sign "${{ secrets.APPLE_TEAM_ID }}" --timestamp --options runtime dist/vector.dylib
102+ run : |
103+ codesign --sign "${{ secrets.APPLE_TEAM_ID }}" --timestamp --options runtime dist/vector.dylib
104+ ditto -c -k dist/vector.dylib dist/vector.zip
105+ xcrun notarytool submit dist/vector.zip --apple-id "${{ secrets.APPLE_ID }}" --password "${{ secrets.APPLE_PASSWORD }}" --team-id "${{ secrets.APPLE_TEAM_ID }}" --wait
106+ rm dist/vector.zip
103107
104108 - name : codesign and notarize xcframework
105109 if : matrix.name == 'apple-xcframework'
Original file line number Diff line number Diff line change 2424extern "C" {
2525#endif
2626
27- #define SQLITE_VECTOR_VERSION "0.9.24 "
27+ #define SQLITE_VECTOR_VERSION "0.9.25 "
2828
2929SQLITE_VECTOR_API int sqlite3_vector_init (sqlite3 * db , char * * pzErrMsg , const sqlite3_api_routines * pApi );
3030
You can’t perform that action at this time.
0 commit comments