File tree Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -35,14 +35,14 @@ jobs:
35
35
- name : Setup Gradle
36
36
uses : gradle/actions/setup-gradle@v4
37
37
- name : Build .xcf
38
- run : ./gradlew assembleXCFramework
38
+ run : ./gradlew assembleSpaydkmpXCFramework
39
39
env :
40
40
GITHUB_RELEASE_VERSION : ${{ github.event.release.name }}
41
41
- name : Upload artifact
42
42
uses : actions/upload-artifact@v4
43
43
with :
44
44
name : xcf
45
- path : shared/build/XCFrameworks/release/shared .xcframework
45
+ path : shared/build/XCFrameworks/release/spaydkmp .xcframework
46
46
publish-ios :
47
47
needs : build-ios
48
48
runs-on : ubuntu-latest
Original file line number Diff line number Diff line change 20
20
- name : Setup Gradle
21
21
uses : gradle/actions/setup-gradle@v4
22
22
- name : Run unit tests
23
- run : ./gradlew testDebugUnitTest
23
+ run : ./gradlew testDebugUnitTest
24
+ - name : Build .xcf
25
+ run : ./gradlew assembleSpaydkmpXCFramework
Original file line number Diff line number Diff line change @@ -25,15 +25,15 @@ kotlin {
25
25
publishLibraryVariants(" release" )
26
26
}
27
27
28
- val xcf = XCFramework ()
28
+ val xcf = XCFramework (" spaydkmp " )
29
29
30
30
listOf (
31
31
iosX64(),
32
32
iosArm64(),
33
33
iosSimulatorArm64()
34
34
).forEach { iosTarget ->
35
35
iosTarget.binaries.framework {
36
- baseName = " shared "
36
+ baseName = " spaydkmp "
37
37
isStatic = true
38
38
39
39
xcf.add(this )
You can’t perform that action at this time.
0 commit comments