Skip to content

Commit

Permalink
Merge branch 'dev' of https://github.com/zen-browser/desktop into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
mauro-balades committed Nov 24, 2024
2 parents f23b4fb + 426a8e5 commit 0658345
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions .github/workflows/macos-release-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,11 @@ jobs:
mac-build:
name: Build macOS - ${{ matrix.arch }}

runs-on: ${{ matrix.os }}
runs-on: macos-14
strategy:
fail-fast: false
matrix:
include:
- arch: aarch64
os: macos-14
- arch: x86_64
os: macos-13
arch: [x86_64, aarch64]

steps:
- name: Install Node.js
Expand Down Expand Up @@ -77,6 +73,12 @@ jobs:
brew install watchman
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain 1.79
source $HOME/.cargo/env
if test "${{ matrix.arch }}" = "aarch64"; then
rustup target add aarch64-apple-darwin
else
rustup target add x86_64-apple-darwin
fi
- name: Force usage fo gnu-tar
run: |
Expand Down

0 comments on commit 0658345

Please sign in to comment.