How to provide build settings for build preAction

Question or problem

Is there any way to specify I want to provide build settings for build preAction?

Scheme(
      name: "....",
       shared: true,
       buildAction: .buildAction(
           targets: [....],
           preActions: [
               .init(
                   title: "Embed Shared framework",
                   scriptText: "cd $SRCROOT/../.....",
                   target: ....
               )
           ]
       ),
       testAction: .targets([....]),
       runAction: ....
   ),

Expectation

I want to have BuildableReference generated.

Context

  • Tuist version: 3.35.5