Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
outputs:
tag: ${{ steps.tag.outputs.tag }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
fetch-depth: 0

Expand All @@ -32,7 +32,7 @@ jobs:
maven_publish:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Validate Gradle Wrapper
uses: gradle/wrapper-validation-action@v1
- uses: actions/cache@v3
Expand Down Expand Up @@ -81,14 +81,14 @@ jobs:
with:
cache-encryption-key: ${{ secrets.GRADLE_ENCRYPTION_KEY }}
- name: Build frameworks
run: "./gradlew PowerSyncKotlin:buildRelease"
run: "./gradlew internal:PowerSyncKotlin:buildRelease"

- uses: actions/upload-artifact@v4
with:
name: XCFramework
retention-days: 1 # Only used temporarily
compression-level: 0 # We're already uploading a compressed file
path: PowerSyncKotlin/build/FrameworkArchives/PowersyncKotlinRelease.zip
path: internal/PowerSyncKotlin/build/FrameworkArchives/PowersyncKotlinRelease.zip
if-no-files-found: error

add_assets:
Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Pod::Spec.new do |spec|


spec.pod_target_xcconfig = {
'KOTLIN_PROJECT_PATH' => ':PowerSyncKotlin',
'KOTLIN_PROJECT_PATH' => ':internal:PowerSyncKotlin',
'PRODUCT_MODULE_NAME' => 'PowerSyncKotlin',
}

Expand All @@ -28,7 +28,7 @@ Pod::Spec.new do |spec|
fi
set -ev
REPO_ROOT="$PODS_TARGET_SRCROOT"
"$REPO_ROOT/../gradlew" -p "$REPO_ROOT" $KOTLIN_PROJECT_PATH:syncFramework \
"$REPO_ROOT/../../gradlew" -p "$REPO_ROOT" $KOTLIN_PROJECT_PATH:syncFramework \
-Pkotlin.native.cocoapods.platform=$PLATFORM_NAME \
-Pkotlin.native.cocoapods.archs="$ARCHS" \
-Pkotlin.native.cocoapods.configuration="$CONFIGURATION"
Expand Down
3 changes: 1 addition & 2 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ plugins {
rootProject.name = "powersync-root"

include(":internal:download-core-extension")
include(":internal:PowerSyncKotlin")

include(":core")
include(":core-tests-android")
Expand All @@ -38,8 +39,6 @@ include(":static-sqlite-driver")
include(":integrations:sqldelight")
include(":integrations:sqldelight-test-database")

include(":PowerSyncKotlin")

include(":compose")

include(":demos:android-supabase-todolist")
Expand Down