diff --git a/README.md b/README.md index 67607f4..90b8ef8 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # GitHub Action for Rust and MUSL -Action provides an environment with stable Rust 1.37, MUSL and x86_64-unknown-linux-musl target. This is based heavily off https://github.com/emk/rust-musl-builder. +Action provides an environment with stable Rust, MUSL and x86_64-unknown-linux-musl target. This is based heavily off https://github.com/emk/rust-musl-builder. code for the base image from which the Dockerfile derives is here: https://github.com/stevenleadbeater/rust-musl-builder-base The following static binaries are compiled in to the base image as per the emk/rust-musl-builder repo diff --git a/action.yml b/action.yml new file mode 100644 index 0000000..e9a2f20 --- /dev/null +++ b/action.yml @@ -0,0 +1,11 @@ +name: "Rust MUSL static binary builder for Alpine" +description: "Build a statically linked rust binary compatible with Alpine containers" +author: "Steven Leadbeater " + +branding: + icon: "anchor" + color: "blue" + +runs: + using: docker + image: docker://ledsys/rust-musl-builder:0.0.1 \ No newline at end of file