mirror of
https://github.com/LearningOS/rust-based-os-comp2022.git
synced 2026-02-07 12:23:44 +08:00
36 lines
711 B
YAML
36 lines
711 B
YAML
name: Deploy Guide
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
|
|
jobs:
|
|
deploy-doc:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-python@v2
|
|
with:
|
|
python-version: "3.8.10"
|
|
- name: Install dependencies
|
|
run: |
|
|
cd guide
|
|
pip install -r requirements.txt
|
|
|
|
- name: build doc
|
|
run: |
|
|
cd guide
|
|
make html
|
|
|
|
- name: create .nojekyll
|
|
run: |
|
|
cd guide
|
|
touch build/html/.nojekyll
|
|
|
|
- name: Push to gh-pages
|
|
uses: peaceiris/actions-gh-pages@v3
|
|
with:
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
publish_dir: ./guide/build/html
|