Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,25 +5,25 @@ on:

jobs:
build:
# Specify macos-15-intel because we need to build on an x64 machine and all macos 14 machines are arm based.
# Specify macos-26-intel because we need to build on an x64 machine and all macos 26 machines are arm based.
# There seems to be an issue building x64 variants on arm64 machines.
runs-on: macos-15-intel
runs-on: macos-26-intel
name: Build

steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Setup node
uses: actions/setup-node@v6
with:
node-version: '22'
node-version: '24'

- name: Build
run: yarn install --frozen-lockfile

- name: Archive pre-built bindings
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: binding
path: binding/**
8 changes: 4 additions & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ on:

jobs:
publish:
# Specify macos-15-intel because we need to build on an x64 machine and all macos 14 machines are arm based.
# Specify macos-26-intel because we need to build on an x64 machine and all macos 26 machines are arm based.
# There seems to be an issue building x64 variants on arm64 machines.
runs-on: macos-15-intel
runs-on: macos-26-intel
name: Publish

steps:
Expand All @@ -17,14 +17,14 @@ jobs:
- name: Setup node
uses: actions/setup-node@v6
with:
node-version: '22'
node-version: '24'
registry-url: 'https://registry.npmjs.org'

- name: Build
run: yarn install --frozen-lockfile

- name: Archive pre-built bindings
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: binding
path: binding/**
Expand Down
Loading