Skip to content

Commit ae3c03c

Browse files
author
radovan paška
committed
rename resulting framework
1 parent 4726955 commit ae3c03c

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,14 @@ jobs:
3535
- name: Setup Gradle
3636
uses: gradle/actions/setup-gradle@v4
3737
- name: Build .xcf
38-
run: ./gradlew assembleXCFramework
38+
run: ./gradlew assembleSpaydkmpXCFramework
3939
env:
4040
GITHUB_RELEASE_VERSION: ${{ github.event.release.name }}
4141
- name: Upload artifact
4242
uses: actions/upload-artifact@v4
4343
with:
4444
name: xcf
45-
path: shared/build/XCFrameworks/release/shared.xcframework
45+
path: shared/build/XCFrameworks/release/spaydkmp.xcframework
4646
publish-ios:
4747
needs: build-ios
4848
runs-on: ubuntu-latest

.github/workflows/verify.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,6 @@ jobs:
2020
- name: Setup Gradle
2121
uses: gradle/actions/setup-gradle@v4
2222
- name: Run unit tests
23-
run: ./gradlew testDebugUnitTest
23+
run: ./gradlew testDebugUnitTest
24+
- name: Build .xcf
25+
run: ./gradlew assembleSpaydkmpXCFramework

shared/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,15 @@ kotlin {
2525
publishLibraryVariants("release")
2626
}
2727

28-
val xcf = XCFramework()
28+
val xcf = XCFramework("spaydkmp")
2929

3030
listOf(
3131
iosX64(),
3232
iosArm64(),
3333
iosSimulatorArm64()
3434
).forEach { iosTarget ->
3535
iosTarget.binaries.framework {
36-
baseName = "shared"
36+
baseName = "spaydkmp"
3737
isStatic = true
3838

3939
xcf.add(this)

0 commit comments

Comments
 (0)