mirror of
https://github.com/wez/wezterm.git
synced 2024-12-02 11:03:49 +03:00
63 lines
1.8 KiB
YAML
63 lines
1.8 KiB
YAML
name: pages
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
paths:
|
|
- "docs/**"
|
|
- "ci/build-docs.sh"
|
|
- "ci/generate-docs.py"
|
|
- "ci/subst-release-info.py"
|
|
- ".github/workflows/pages.yml"
|
|
- ".github/ISSUE_TEMPLATE/*"
|
|
schedule:
|
|
- cron: "50 * * * *"
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
paths:
|
|
- "docs/**"
|
|
- "ci/build-docs.sh"
|
|
- "ci/generate-docs.py"
|
|
- "ci/subst-release-info.py"
|
|
- ".github/workflows/pages.yml"
|
|
- ".github/ISSUE_TEMPLATE/*"
|
|
|
|
jobs:
|
|
publish:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v1
|
|
- name: Install Rust
|
|
run: |
|
|
curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain stable
|
|
source $HOME/.cargo/env
|
|
rustup update stable
|
|
- name: Cache mdBook
|
|
uses: actions/cache@v1
|
|
with:
|
|
path: ~/mdbook-bin
|
|
key: cargo-bin-mdbook-1
|
|
- name: Install mdBook
|
|
run: |
|
|
mkdir -p ~/mdbook-bin
|
|
(test -x ~/mdbook-bin/mdbook || (cd && cargo install --vers "^0.4" mdbook && cp -p ~/.cargo/bin/mdbook ~/mdbook-bin))
|
|
(test -x ~/mdbook-bin/mdbook-linkcheck || (cd && cargo install mdbook-linkcheck && cp -p ~/.cargo/bin/mdbook-linkcheck ~/mdbook-bin))
|
|
- name: Build
|
|
run: |
|
|
source $HOME/.cargo/env
|
|
PATH="$HOME/mdbook-bin:$PATH"
|
|
./ci/build-docs.sh
|
|
- name: Deploy
|
|
if: success() && ${{ github.event_name != 'pull_request' }}
|
|
uses: crazy-max/ghaction-github-pages@v2
|
|
with:
|
|
target_branch: gh-pages
|
|
build_dir: gh_pages/html
|
|
keep_history: true
|
|
allow_empty_commit: false
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|