diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0788680..a530304 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -54,13 +54,17 @@ jobs: - name: Build for Intel Linux run: cargo build --release --target=x86_64-unknown-linux-gnu - - name: Build for ARM Linux + - name: Build for Aarch Linux + run: cross build --release --target=aarch64-unknown-linux-gnu + + - name: Build for ARMv7 Linux run: cross build --release --target=armv7-unknown-linux-gnueabihf - name: Create artifacts directory run: | mkdir -p artifacts cp target/x86_64-unknown-linux-gnu/release/relay-server artifacts/relay-server-x86_64-unknown-linux + cp target/aarch64-unknown-linux-gnu/release/relay-server artifacts/relay-server-aarch64-unknown-linux cp target/armv7-unknown-linux-gnueabihf/release/relay-server artifacts/relay-server-armv7-unknown-linux - name: Create GitHub Release diff --git a/Cargo.lock b/Cargo.lock index 769b6ed..1bc1d3c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2301,7 +2301,7 @@ checksum = "adad44e29e4c806119491a7f06f03de4d1af22c3a680dd47f1e6e179439d1f56" [[package]] name = "relay-server" -version = "0.1.0" +version = "0.2.0" dependencies = [ "camino", "clap", diff --git a/Cargo.toml b/Cargo.toml index 66c156d..23eaaf3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "relay-server" -version = "0.1.0" +version = "0.2.0" authors = ["Calimero Limited "] edition = "2021" repository = "https://github.com/calimero-network/relay-server"