mirror of
https://github.com/wez/wezterm.git
synced 2024-12-18 19:01:36 +03:00
35060fb2de
This reverts commitbef0fa29ac
andbb2d45d0aa
. refs: https://github.com/Michael-F-Bryan/mdbook-linkcheck/issues/53
10 lines
348 B
Bash
Executable File
10 lines
348 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 || exit 1
|
|
python3 ci/generate-docs.py || exit 1
|
|
mdbook build docs
|
|
|
|
cp assets/icon/terminal.png gh_pages/html/favicon.png
|
|
cp assets/icon/wezterm-icon.svg gh_pages/html/favicon.svg
|