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
8 changes: 5 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ jobs:
- uses: actions/checkout@v4
with:
fetch-depth: 0
submodules: true
- name: Generate link list
run: |
for link in $(grep -Rin --include="*.md" -E -o "https?://[a-zA-Z0-9./?#=_%:-]*[^\.]" src); do
Expand All @@ -40,9 +41,10 @@ jobs:
curl -sSL "$url" | tar -xz --directory=./opt/mdbook-mermaid
- name: Generate web platform feature page
run: |
curl 'https://raw.githubusercontent.com/servo/servo/refs/heads/main/components/config/prefs.rs' -O
curl 'https://raw.githubusercontent.com/servo/servo/refs/heads/main/ports/servoshell/prefs.rs' -o servoshell_prefs.rs
python generate-features.py prefs.rs servoshell_prefs.rs >src/design-documentation/experimental-features.md
python generate-features.py \
servo/components/config/prefs.rs \
servo/ports/servoshell/prefs.rs \
> src/design-documentation/experimental-features.md
- name: Build book
run: |
mdbook build
Expand Down
4 changes: 4 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
[submodule "servo"]
path = servo
url = https://github.com/servo/servo.git
branch = main
1 change: 1 addition & 0 deletions servo
Submodule servo added at 22d026