upload-rust-binary-action
upload-rust-binary-action copied to clipboard
GitHub Action for building and uploading Rust binary to GitHub Releases.
Adds outputs from the action for the archive file name(s) and checksum file name(s). This should enable using those in subsequent workflow steps, such as [Artefact Attestations](https://github.blog/changelog/2024-05-02-artifact-attestations-public-beta/). For example: ```yaml...
I am trying to cross-compile a program. There is the matrix of all the values that I defined: ``` matrix: include: # Ubuntu - target: aarch64-unknown-linux-gnu os: ubuntu-latest - target:...
Things that appear to be the standard for each platform: - [ ] PGP (archives and/or binaries): see https://github.com/taiki-e/upload-rust-binary-action/issues/40#issuecomment-1382745575 - [ ] Windows code signing (binaries): - https://github.com/rust-lang/rustup/issues/1568 - [x]...
GitHub Actions like `runs` support changing the `working-directory`. This is important as many repositories contain more than one project. I may be missing something, but I can't seem to make...
Hi, I am exploring the package and was wondering how to generate executable that can run on Andriod for a open source project https://github.com/qdrant/qdrant Not many resources are available Can...
Resolves https://github.com/taiki-e/upload-rust-binary-action/issues/48
- [x] tar.xz; done in https://github.com/taiki-e/upload-rust-binary-action/pull/98 - [ ] tar.bz2 - [ ] no archive - [ ] upx (https://github.com/taiki-e/upload-rust-binary-action/issues/54); pending in #90
Since this action does all: compiling, stripping, and uploading, it's currently not possible to retain debuginfos in a separate file, since they're just stripped away immediately after building. Debuginfos are...
https://blog.rust-lang.org/2022/09/22/Rust-1.64.0.html#cargo-improvements-workspace-inheritance-and-multi-target-builds
By default `cargo build` will build all workspace members including binaries and libraries, but this action requires adding the `--bin` flag which only builds binaries, can the `bin` option be...