So I'm using a vendored gradle build: ```includeBu...
# gradle
r
So I'm using a vendored gradle build:
Copy code
includeBuild("kable") {
    dependencySubstitution {
        substitute(module("com.juul.kable:kable-core")).using(project(":kable-core"))
    }
}
not kotlin but kotlin colored 1
which works fine locally:
Copy code
> Task :projects

Projects:

------------------------------------------------------------
Root project 'App'
------------------------------------------------------------

Root project 'App'
\--- Project ':composeApp'

Included builds:

+--- Included build ':build-logic'
\--- Included build ':kable'
but fails on CI:
Copy code
* What went wrong:
Project with path ':kable-core' not found in build ':kable'.
c
Well, with the info you provided, the error message is correct. Where is your
kable-core
project?
v
The question is not Kotlin related, so off-topic anyway, please have a look at channel topics. ;-)
r
... the issue was in the end that the github actions had a lot more
checkout
which all had to be annotated with fetching submodules, problem solved.
👌 1