From 37dcd1efba3fb9a890476c5e00ec97c8f2ed64bd Mon Sep 17 00:00:00 2001 From: Rubén Beltrán del Río Date: Sat, 17 Jan 2026 17:58:44 +0100 Subject: Replace secret --- Makefile | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'Makefile') diff --git a/Makefile b/Makefile index f9133e2..aac7b92 100644 --- a/Makefile +++ b/Makefile @@ -124,6 +124,16 @@ distribute: distribute-rpm distribute-deb distribute-tar distribute-flatpak release: package distribute +# We can't do cross compile, so for now let's just make it easy to release +# on arm here +arm: +ifneq ($(channel),) + $(MAKE) -e profile=release -e channel=$(channel) -e target=aarch64-unknown-linux-gnu release +else + $(MAKE) -e profile=release -e channel=unstable -e target=aarch64-unknown-linux-gnu release +endif + + # Installation ################################################################# install: build -- cgit