diff --git a/.github/workflows/ios-artefact-build.yml b/.github/workflows/ios-artefact-build.yml index 750c1e92..1cca4f55 100644 --- a/.github/workflows/ios-artefact-build.yml +++ b/.github/workflows/ios-artefact-build.yml @@ -53,14 +53,14 @@ jobs: swift package init --type library rm -rf /ios-tuvali-library - - name: Move required files - run: | - cp -R ./ios/Wallet ./ios-tuvali-library/Sources/ios-tuvali-library - cp -R ./ios/ble ./ios-tuvali-library/Sources/ios-tuvali-library - cp -R ./ios/crypto ./ios-tuvali-library/Sources/ios-tuvali-library - cp -R ./ios/common ./ios-tuvali-library/Sources/ios-tuvali-library - cd ios-tuvali-library/Sources/ios-tuvali-library - ls +# - name: Move required files +# run: | +# cp -R ./ios/Wallet ./ios-tuvali-library/Sources/ios-tuvali-library +# cp -R ./ios/ble ./ios-tuvali-library/Sources/ios-tuvali-library +# cp -R ./ios/crypto ./ios-tuvali-library/Sources/ios-tuvali-library +# cp -R ./ios/common ./ios-tuvali-library/Sources/ios-tuvali-library +# cd ios-tuvali-library/Sources/ios-tuvali-library +# ls - name: Edit Package.swift run: | diff --git a/artefacts/tuvali-ios-artefact/Package.swift b/artefacts/tuvali-ios-artefact/Package.swift index 955f4d5b..aebf41a4 100644 --- a/artefacts/tuvali-ios-artefact/Package.swift +++ b/artefacts/tuvali-ios-artefact/Package.swift @@ -9,7 +9,7 @@ let package = Package( // Products define the executables and libraries a package produces, making them visible to other packages. .library( name: "ios-tuvali-library", - targets: ["ios-tuvali-library/Sources"]), + targets: ["ios-tuvali-library"]), ], dependencies: [ .package(url: "https://github.com/1024jp/GzipSwift", from: Version(6, 0, 0)), @@ -19,7 +19,7 @@ let package = Package( // Targets are the basic building blocks of a package, defining a module or a test suite. // Targets can depend on other targets in this package and products from dependencies. .target( - name: "ios-tuvali-library/Sources"), + name: "ios-tuvali-library"), .testTarget( name: "ios-tuvali-libraryTests", dependencies: ["ios-tuvali-library"]),