From 4172efe16b25b2ef0c68f7d96b2fa5aae7111996 Mon Sep 17 00:00:00 2001 From: alex Date: Sun, 28 Apr 2024 11:23:13 +0200 Subject: [PATCH] Adapt to GH runners being ARM now --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 675c8cf..6cc09fb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -110,16 +110,16 @@ jobs: profile: minimal toolchain: stable override: true - target: aarch64-apple-darwin + target: x86_64-apple-darwin - uses: actions-rs/cargo@v1 with: command: build - args: --release + args: --release --target=x86_64-apple-darwin - uses: actions-rs/cargo@v1 with: command: build args: --release --target=aarch64-apple-darwin - - run: lipo -create -output target/ubpkg target/release/ubpkg target/aarch64-apple-darwin/release/ubpkg + - run: lipo -create -output target/ubpkg target/x86_64-apple-darwin/release/ubpkg target/aarch64-apple-darwin/release/ubpkg - name: Upload Release Asset id: upload-release-asset uses: actions/upload-artifact@v1