I want to compile all the binaries in https://github.com/uutils/coreutils and package them into a single compressed file. However, the commands for the coreutils subpackages and binaries are different, so compiling them individually requires prefixing each bin.
bin: ${{ matrix.bin }}
package: uu_${{ matrix.bin }}
Is there a way to achieve a similar effect as cargo build --workspace and compress all compiled bins?
I want to compile all the binaries in https://github.com/uutils/coreutils and package them into a single compressed file. However, the commands for the coreutils subpackages and binaries are different, so compiling them individually requires prefixing each bin.
Is there a way to achieve a similar effect as
cargo build --workspaceand compress all compiled bins?