diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0c22c7e..e32faba 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -33,6 +33,13 @@ jobs: toolchain: stable target: ${{ matrix.target }} default: true + + - 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 uses: actions-rs/cargo@v1