diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 827924d..ee2c310 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -23,6 +23,10 @@ jobs: toolchain: stable target: ${{ matrix.target }} + - name: Install dependencies for cross-compilation + if: matrix.target == 'aarch64-unknown-linux-gnu' + run: sudo apt-get update && sudo apt-get install -y gcc-aarch64-linux-gnu + - name: Build run: cargo build --release --target ${{ matrix.target }}