diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ebf8fa58..6027f2b7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -31,5 +31,5 @@ jobs: - uses: actions/checkout@v2 - name: Install target run: rustup update && rustup target add aarch64-apple-darwin - - name: Check build - run: cargo check --target=aarch64-apple-darwin + - name: Build + run: cargo build --target=aarch64-apple-darwin diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 4b3ab013..6bf947b7 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -18,8 +18,8 @@ jobs: run: rustup update && rustup target add aarch64-apple-darwin - name: Test run: cargo test --release - - name: Test ARM - run: cargo test --release --target=aarch64-apple-darwin + - name: Build ARM + run: cargo build --release --target=aarch64-apple-darwin - name: Make DMG run: make dmg-universal - name: Upload Application