Skip to content

Commit 882114d

Browse files
committed
Test new Android release process
1 parent 3217e01 commit 882114d

File tree

2 files changed

+14
-2
lines changed

2 files changed

+14
-2
lines changed

.github/workflows/android.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,15 @@ jobs:
1515
uses: ./.github/actions/android
1616
with:
1717
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

android/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ plugins {
1212
id("signing")
1313
}
1414

15-
group = "co.powersync"
16-
version = "0.4.1"
15+
group = "com.powersync"
16+
version = "0.0.1"
1717
description = "PowerSync Core SQLite Extension"
1818

1919
val localRepo = uri("build/repository/")

0 commit comments

Comments
 (0)