Command to "publish" app?

Hi,
Just wondering if there's any way to get the actual output of SwiftPM build into a clean folder.
To clarify, if I'm building an executable and I'm happy with the current state of my code, I want to distribute it. Is there any command to get the result in a specified folder (by convention or otherwise) so that I don't have to go and fish the file out of the build folder (single executable file)?

Thanks!

There's no way to specify a separate build path just for executables, just --build-path to customise it in general. There is a --show-bin-path option however that you could use if you want to locate the binary for scripting purposes.

Thanks! Those should cover my use case