1
1
mirror of https://github.com/wez/wezterm.git synced 2024-12-26 23:04:49 +03:00
wezterm/.github/workflows/pages.yml

59 lines
1.7 KiB
YAML
Raw Normal View History

name: pages
on:
push:
branches:
2021-10-02 15:26:22 +03:00
- main
paths:
2021-10-02 15:26:22 +03:00
- "docs/**"
- "ci/build-docs.sh"
- "ci/generate-docs.py"
- "ci/subst-release-info.py"
- ".github/workflows/pages.yml"
- ".github/ISSUE_TEMPLATE/*"
2019-12-30 09:22:14 +03:00
schedule:
- cron: "50 * * * *"
jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install Rust
run: |
curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain stable
source $HOME/.cargo/env
rustup update stable
- uses: actions/cache@v3
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
2022-05-07 06:19:14 +03:00
key: ${{ runner.os }}-cargo-mdbook-${{ hashFiles('.github/workflows/pages.yml') }}
- name: Install mdBook
run: |
2022-05-07 06:19:14 +03:00
(test -x ~/.cargo/bin/mdbook || (cd && cargo install mdbook --no-default-features --features search --vers "^0.4" --locked))
- name: Install mdBook linkcheck
run: |
2022-05-07 06:19:14 +03:00
(test -x ~/.cargo/bin/mdbook-linkcheck || (cd && cargo install mdbook-linkcheck --locked))
- name: Install mdBook mermaid
run: |
2022-05-07 06:19:14 +03:00
(test -x ~/.cargo/bin/mdbook-mermaid || (cd && cargo install mdbook-mermaid --locked))
- name: Build
run: |
source $HOME/.cargo/env
./ci/build-docs.sh
- name: Deploy
if: success()
uses: crazy-max/ghaction-github-pages@v3
with:
target_branch: gh-pages
build_dir: gh_pages/html
2020-12-10 09:47:57 +03:00
keep_history: true
allow_empty_commit: false
env:
2020-12-10 02:58:14 +03:00
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}