How to use `distributions` to copy a folder, not just single files?

You can use into to construct the destination directory structure.

contents {
    into("config") {
        from("config")
    }
}
1 Like