From 2b7e04490ddfeda80d21a5fa04295d6e659114d3 Mon Sep 17 00:00:00 2001 From: Mike Engel Date: Wed, 21 Aug 2024 23:29:52 +0200 Subject: [PATCH] fix: use target --- .github/workflows/cd.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index b991d0d..a4393e7 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -57,7 +57,7 @@ jobs: run: cargo build --target=aarch64-apple-darwin --release - name: Build universal binary for macOS if: ${{ runner.os == 'macOS' }} - run: lipo -create -output jwt target/release/jwt target/aarch64-apple-darwin/release/jwt + run: lipo -create -output jwt target/${{ matrix.target }}/release/jwt target/aarch64-apple-darwin/release/jwt - name: Packaging final binary shell: bash run: |