diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 16064f7..702d8ab 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -58,5 +58,10 @@ jobs: run: | cargo build --verbose --release --target=aarch64-apple-darwin cargo build --verbose --release --target=x86_64-apple-darwin + - name: Build Universal + run: | + mkdir -p ./target/universal-apple-darwin/release/ + lipo -create -output ./target/universal-apple-darwin/release/git-lfs-synology ./target/x86_64-apple-darwin/release/git-lfs-synology ./target/aarch64-apple-darwin/release/git-lfs-synology - name: ls - run: find . -name git-lfs-synology \ No newline at end of file + run: | + find . -name git-lfs-synology