From f70fbd36b0788dbe02a97f8ae40c8ecee87e9be5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kim=20=E9=87=91=E5=8F=AF=E6=98=8E?= Date: Mon, 24 Jul 2023 14:14:18 +0800 Subject: [PATCH] chore(workflows/release.yml): install cross crate for linux --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c64a21b6..7c756558 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -52,9 +52,9 @@ jobs: with: targets: aarch64-apple-darwin, aarch64-unknown-linux-gnu - - name: Install dependencies (linux) + - name: Install Cargo dependencies (linux) if: runner.os == 'Linux' - run: sudo apt-get install -y gcc-aarch64-linux-gnu g++-aarch64-linux-gnu + run: cargo install cross shell: bash - name: Build (unix)