upload-rust-binary-action
upload-rust-binary-action copied to clipboard
How to compile all bins in a workspace
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?