Skip to content

Commit 9acf5e7

Browse files
committed
moved to Macos prefer first
1 parent ef2db75 commit 9acf5e7

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

.github/workflows/deploy-docs.yml

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,20 @@ on:
77

88
jobs:
99
deploy:
10-
runs-on: ubuntu-latest
10+
strategy:
11+
matrix:
12+
include:
13+
- runner: [self-hosted, macOS, ARM64]
14+
fallback: ubuntu-latest
15+
fail-fast: false
16+
runs-on: ${{ matrix.runner }}
17+
continue-on-error: ${{ matrix.fallback != '' }}
18+
defaults:
19+
run:
20+
working-directory: documentation
1121
env:
22+
# Bump Node heap to 6 GB — the typedoc-generated type-reference
23+
# content pushes Docusaurus's webpack bundle past the default 2 GB.
1224
NODE_OPTIONS: --max-old-space-size=6144
1325
steps:
1426
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)