commit f2cbf672c45ba5fce875a19db577f4bf9bbc8c23 parent 13785b79e76b06eecefed529804859c26f927c39 Author: finwo <finwo@pm.me> Date: Sun, 15 Mar 2026 22:42:28 +0100 Re-add macos build target Diffstat:
| M | .github/workflows/release.yml | | | 11 | +++++++++-- |
1 file changed, 9 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml @@ -17,6 +17,9 @@ jobs: - runs-on: ubuntu-24.04-arm os: linux arch: arm64 + - runs-on: macos-14 + os: macos + arch: arm64 steps: - name: Checkout code @@ -30,8 +33,12 @@ jobs: - name: Install dependencies run: | - sudo apt-get update - sudo apt-get install -y clang curl libcurl4-openssl-dev + if [[ "${{ matrix.os }}" == "linux" ]]; then + sudo apt-get update + sudo apt-get install -y clang curl libcurl4-openssl-dev + elif [[ "${{ matrix.os }}" == "macos" ]]; then + brew install curl + fi - name: Build run: make dep