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
6 changes: 4 additions & 2 deletions .github/workflows/docs-publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,10 @@ on:

jobs:
build:
# This builds and uploads the documentation site, not SpacetimeDB binaries.
runs-on: spacetimedb-linux-small
# Docusaurus exceeds the small runner's roughly 2 GiB default Node heap.
runs-on: spacetimedb-linux
env:
NODE_OPTIONS: --max-old-space-size=8192
steps:
- name: Checkout repository
uses: actions/checkout@v3
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/docs-update-llms.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,10 @@ on:

jobs:
update-llms:
# This builds documentation assets and updates one generated text file.
runs-on: spacetimedb-linux-small
# This runs the same memory-intensive Docusaurus build as docs publishing.
runs-on: spacetimedb-linux
env:
NODE_OPTIONS: --max-old-space-size=8192
steps:
- name: Checkout repository
uses: actions/checkout@v3
Expand Down
Loading