mirror of
https://github.com/wez/wezterm.git
synced 2024-11-10 15:04:32 +03:00
15 lines
450 B
Bash
Executable File
15 lines
450 B
Bash
Executable File
#!/bin/bash
|
|
|
|
[[ -f /tmp/wezterm.releases.json ]] || curl https://api.github.com/repos/wez/wezterm/releases > /tmp/wezterm.releases.json
|
|
python3 ci/subst-release-info.py
|
|
python3 ci/generate-docs.py
|
|
mdbook build docs
|
|
|
|
# mdBook can append js includes but it is too late to register syntax
|
|
# highlighting extensions, so we apply brute force here
|
|
|
|
mv gh_pages/book.js gh_pages/book.2
|
|
cat docs/lua.js gh_pages/book.2 > gh_pages/book.js
|
|
rm gh_pages/book.2
|
|
|