From 66bdad3daaeb9d016e542b58808734200f7b081d Mon Sep 17 00:00:00 2001 From: Jason Hall Date: Wed, 15 Oct 2025 18:59:18 -0400 Subject: [PATCH] next attempt at release Signed-off-by: Jason Hall --- .github/workflows/release.yaml | 6 ++++++ Cargo.toml | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 124d087..e49a96a 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -18,6 +18,12 @@ jobs: - uses: dtolnay/rust-toolchain@6d653acede28d24f02e3cd41383119e8b1b35921 # master with: toolchain: stable + targets: x86_64-unknown-linux-musl,aarch64-unknown-linux-musl + + - name: Install cross-compilation tools for both architectures + run: | + sudo apt-get update + sudo apt-get install -y musl-tools gcc-aarch64-linux-gnu gcc-x86-64-linux-gnu - name: Cache cargo registry uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4 diff --git a/Cargo.toml b/Cargo.toml index ddfb4ed..8b0ccb3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "krust" -version = "0.0.2" +version = "0.0.3" edition = "2021" authors = ["Jason Hall "] description = "A container image build tool for Rust applications"