File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -275,7 +275,7 @@ jobs:
275275
276276 - name : release android aar to maven central
277277 if : steps.tag.outputs.version != ''
278- run : make aar && cd packages/android && ./gradlew publishAggregationToCentralPortal -PSIGNING_KEY="${{ secrets.SIGNING_KEY }}" -PSIGNING_PASSWORD="${{ secrets.SIGNING_PASSWORD }}" -PSONATYPE_USERNAME="${{ secrets.MAVEN_CENTRAL_USERNAME }}" -PSONATYPE_PASSWORD="${{ secrets.MAVEN_CENTRAL_TOKEN }}" -PVERSION="${{ steps.tag.outputs.version }}"
278+ run : cd packages/android && ./gradlew publishAggregationToCentralPortal -PSIGNING_KEY="${{ secrets.SIGNING_KEY }}" -PSIGNING_PASSWORD="${{ secrets.SIGNING_PASSWORD }}" -PSONATYPE_USERNAME="${{ secrets.MAVEN_CENTRAL_USERNAME }}" -PSONATYPE_PASSWORD="${{ secrets.MAVEN_CENTRAL_TOKEN }}" -PVERSION="${{ steps.tag.outputs.version }}" -PAAR_PATH="../../artifacts/js-android-aar/js.aar "
279279
280280 - uses : softprops/action-gh-release@v2.2.1
281281 if : steps.tag.outputs.version != ''
Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ afterEvaluate {
6060 artifactId = ' js'
6161 version = project. hasProperty(' VERSION' ) ? project. VERSION : [' make' , ' version' ]. execute(null , file(' ../..' )). text. trim()
6262
63- artifact(" $buildDir /outputs/aar/android-release.aar" )
63+ artifact(project . hasProperty( ' AAR_PATH ' ) ? project . AAR_PATH : " $buildDir /outputs/aar/android-release.aar" )
6464
6565 // Maven Central metadata
6666 pom {
Original file line number Diff line number Diff line change 1616#include "sqlite3.h"
1717#endif
1818
19- #define SQLITE_JS_VERSION "1.1.11 "
19+ #define SQLITE_JS_VERSION "1.1.12 "
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