1
1
mirror of https://github.com/wez/wezterm.git synced 2024-11-23 15:04:36 +03:00

docs: Ensure that we fetch release info on each build

This commit is contained in:
Wez Furlong 2019-12-29 22:37:06 -08:00
parent eb3588726c
commit e364191058

View File

@ -32,7 +32,11 @@ jobs:
run: |
(test -x $HOME/.cargo/bin/mdbook || (cd && cargo install --vers "^0.3" mdbook))
- name: Build
run: ci/build-docs.sh
run: |
source $HOME/.cargo/env
curl https://api.github.com/repos/wez/wezterm/releases > /tmp/wezterm.releases.json
python3 ci/subst-release-info.py
mdbook build docs
- name: Deploy
if: success()
uses: crazy-max/ghaction-github-pages@v1