Skip to content
Merged
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
9 changes: 7 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
strategy:
fail-fast: false
matrix:
config:
config:
- {
name: "Windows Latest MSVC",
os: windows-latest,
Expand All @@ -30,6 +30,11 @@ jobs:
os: ubuntu-22.04,
artifact: linux-x64,
}
- {
name: "Ubuntu_24_ARM64",
os: ubuntu-24.04-arm,
artifact: linux-arm64,
}
- {
name: "macOS Latest Clang",
os: macos-latest,
Expand Down Expand Up @@ -90,7 +95,7 @@ jobs:
run: |
brew install cmake
cmake --version

- name: Build
shell: bash
run: |
Expand Down
2 changes: 1 addition & 1 deletion PUBLISHING.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ npm version patch # or minor or major
git push --tag upstream main
```

That should build all 3 platforms and then publish a new package
That should build all 4 platforms and then publish a new package
on npm. At the time of this writing that generally takes 20-30 minutes.

## Notes
Expand Down
Loading