Hey friends - Is it possible to generate and publi...
# touchlab-tools
m
Hey friends - Is it possible to generate and publish >1 Swift packages using 1
KMMBridgeGithubWorkflow
? Our library has 3 modules using KMM Bridge plugin: • CacheMulticastStore However the workflow only generates 1 `Cache` Swift package.
r
Not at the moment. Right now we only generate a package file for a single module, and SPM wants things to be one package file per repo. If you know what you would want your multiple package setup to look like, you may be able to achieve it with some manual configuration by wiring in a task that runs after
updatePackageSwift
and before
kmmbridgePublish
and modifies the package file to match what you need. But as-is there will probably be issues with git operations running at the wrong time.
m
Ah ok 👍
Thanks!
r
It's a use-case we'd like to support better, but haven't had the time to drill down and figure out the best way to do it yet