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/js.dylib
102+ run : |
103+ codesign --sign "${{ secrets.APPLE_TEAM_ID }}" --timestamp --options runtime dist/js.dylib
104+ ditto -c -k dist/js.dylib dist/js.zip
105+ xcrun notarytool submit dist/js.zip --apple-id "${{ secrets.APPLE_ID }}" --password "${{ secrets.APPLE_PASSWORD }}" --team-id "${{ secrets.APPLE_TEAM_ID }}" --wait
106+ rm dist/js.zip
103107
104108 - name : codesign and notarize xcframework
105109 if : matrix.name == 'apple-xcframework'
Original file line number Diff line number Diff line change 1616#include "sqlite3.h"
1717#endif
1818
19- #define SQLITE_JS_VERSION "1.1.8 "
19+ #define SQLITE_JS_VERSION "1.1.9 "
2020
2121int sqlite3_js_init (sqlite3 * db , char * * pzErrMsg , const sqlite3_api_routines * pApi );
2222const char * sqlitejs_version (void );
You can’t perform that action at this time.
0 commit comments