From 57f4b7924bbb3b121f9fd108fcacbe8ddd010aee Mon Sep 17 00:00:00 2001 From: Noah Santschi-Cooney Date: Sun, 2 Jan 2022 22:15:21 +0000 Subject: [PATCH] attempt #3 for M1 Mac build: rust toolchains target edition --- .github/workflows/server.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/server.yml b/.github/workflows/server.yml index a371720..ca3bc87 100644 --- a/.github/workflows/server.yml +++ b/.github/workflows/server.yml @@ -33,6 +33,13 @@ jobs: artifact: aarch64-apple-darwin steps: - uses: actions/checkout@v2 + - name: Install latest nightly + uses: actions-rs/toolchain@v1 + with: + toolchain: nightly + default: true + target: ${{ matrix.platforms.target }} + override: true - name: Build server run: cargo build --target ${{ matrix.platforms.target }} - uses: actions/upload-artifact@v2