diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml index c154ee9..45627be 100644 --- a/.github/workflows/c-cpp.yml +++ b/.github/workflows/c-cpp.yml @@ -26,6 +26,10 @@ jobs: run: make clean && make release CC="zig cc -target aarch64-macos" TARMAN_OS=darwin RELEASE_LDFLAGS="" - name: Archive binaries for target macos-arm64 run: sh ./.github/workflows/make-archives.sh macos-arm64 + - name: Build binaries for target macos-x86_64 + run: make clean && make release CC="zig cc -target x86_64-macos" TARMAN_OS=darwin RELEASE_LDFLAGS="" + - name: Archive binaries for target macos-x86_64 + run: sh ./.github/workflows/make-archives.sh macos-x86_64 - name: Build binaries for target linux-arm64 run: make clean && make release CC="zig cc -target aarch64-linux" RELEASE_LDFLAGS="" - name: Archive binaries for target linux-arm64