Skip to content

Commit afcd273

Browse files
authored
Debug publishing failures (#321)
1 parent e2c63cf commit afcd273

4 files changed

Lines changed: 22 additions & 3 deletions

File tree

.github/workflows/deploy.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,17 @@ jobs:
6161
./gradlew \
6262
--no-configuration-cache \
6363
-PhasPrebuiltAssets=true \
64-
-PGITHUB_PUBLISH_TOKEN="${{ secrets.GITHUB_TOKEN }}" \
64+
-PsigningInMemoryKey="${{ secrets.SIGNING_KEY }}" \
65+
-PsigningInMemoryKeyId="${{ secrets.SIGNING_KEY_ID }}" \
66+
-PsigningInMemoryKeyPassword="${{ secrets.SIGNING_PASSWORD }}" \
67+
-PcentralPortal.username="${{secrets.SONATYPE_USERNAME}}" \
68+
-PcentralPortal.password="${{secrets.SONATYPE_PASSWORD}}" \
69+
-Ppowersync.binaries.allPlatforms="true" \
70+
publishAllPublicationsToSonatypeLocalRepository
71+
72+
./gradlew \
73+
--no-configuration-cache \
74+
-PhasPrebuiltAssets=true \
6575
-PsigningInMemoryKey="${{ secrets.SIGNING_KEY }}" \
6676
-PsigningInMemoryKeyId="${{ secrets.SIGNING_KEY_ID }}" \
6777
-PsigningInMemoryKeyPassword="${{ secrets.SIGNING_PASSWORD }}" \

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# Changelog
22

3-
## 1.10.3
3+
## 1.10.4
4+
5+
(Note: Version `1.10.3` has been skipped due to publishing issues requiring another release)
46

57
- __Important__: Due to changes in our build setup, the library can no longer determine
68
whether it is running in debug mode on Android. This changes the default log severity

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ development=true
1919
RELEASE_SIGNING_ENABLED=true
2020
# Library config
2121
GROUP=com.powersync
22-
LIBRARY_VERSION=1.10.3
22+
LIBRARY_VERSION=1.10.4
2323
GITHUB_REPO=https://github.com/powersync-ja/powersync-kotlin.git
2424
# POM
2525
POM_URL=https://github.com/powersync-ja/powersync-kotlin/

internal/sqlite3mcandroid/build.gradle.kts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,3 +64,10 @@ tasks.withType(ExternalNativeBuildJsonTask::class.java).configureEach {
6464
// runs before CMake is invoked.
6565
dependsOn(generateCmake)
6666
}
67+
68+
tasks.withType<com.android.build.gradle.tasks.JavaDocGenerationTask> {
69+
// The Android Gradle plugin ships with a very old version of Dokka that is enabled by default and doesn't support
70+
// running on Java 25.
71+
// We don't even have any Kotlin sources here, so we can skip the Android documentation task.
72+
enabled = false
73+
}

0 commit comments

Comments
 (0)