From 8b92775e3101ece191b26aa57119e5bebc5526af Mon Sep 17 00:00:00 2001 From: Alex Janka Date: Thu, 26 Dec 2024 22:46:04 +1100 Subject: [PATCH] actions: rustup default stable --- .gitea/workflows/build.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index 5b8fd80..2a670a1 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -15,7 +15,7 @@ jobs: with: submodules: "recursive" - name: Update toolchain - run: "rustup target add aarch64-unknown-linux-musl" + run: "rustup default stable; rustup target add aarch64-unknown-linux-musl" - name: Build run: "cargo build --release --target=aarch64-unknown-linux-musl" - name: Build .deb