File tree Expand file tree Collapse file tree 2 files changed +14
-2
lines changed Expand file tree Collapse file tree 2 files changed +14
-2
lines changed Original file line number Diff line number Diff line change 15
15
uses : ./.github/actions/android
16
16
with :
17
17
sign-publication : ' 0'
18
+
19
+ test_release :
20
+ needs : [build]
21
+ name : Building Android
22
+ if : github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name != github.repository)
23
+ steps :
24
+ - name : Publish to Maven Central
25
+ run : |
26
+ curl --request POST \
27
+ --header 'Authorization: Bearer ${{ secrets.CENTRAL_AUTH }}' \
28
+ --form bundle=@powersync-android.zip \
29
+ https://central.sonatype.com/api/v1/publisher/upload
Original file line number Diff line number Diff line change @@ -12,8 +12,8 @@ plugins {
12
12
id(" signing" )
13
13
}
14
14
15
- group = " co .powersync"
16
- version = " 0.4 .1"
15
+ group = " com .powersync"
16
+ version = " 0.0 .1"
17
17
description = " PowerSync Core SQLite Extension"
18
18
19
19
val localRepo = uri(" build/repository/" )
You can’t perform that action at this time.
0 commit comments