2021-07-07 11:09:42 +08:00
|
|
|
name: CI
|
|
|
|
on:
|
|
|
|
# Trigger the workflow on push or pull request,
|
|
|
|
# but only for the main branch
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
name: Build
|
2022-08-27 19:46:54 +08:00
|
|
|
runs-on: ubuntu-22.04
|
2021-07-07 11:09:42 +08:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@main
|
|
|
|
- name: Update rustup
|
|
|
|
run: rustup self update
|
|
|
|
- name: Install Rust
|
|
|
|
run: |
|
|
|
|
rustup set profile minimal
|
2023-12-17 21:13:56 +08:00
|
|
|
rustup toolchain install 1.74.1 -c rust-docs
|
|
|
|
rustup default 1.74.1
|
2021-07-07 11:09:42 +08:00
|
|
|
- name: Install mdbook
|
|
|
|
run: |
|
|
|
|
mkdir bin
|
2023-12-17 21:13:56 +08:00
|
|
|
curl -sSL https://github.com/rust-lang/mdBook/releases/download/v0.4.36/mdbook-v0.4.36-x86_64-unknown-linux-gnu.tar.gz | tar -xz --directory=bin
|
2021-07-07 11:09:42 +08:00
|
|
|
echo "$(pwd)/bin" >> ${GITHUB_PATH}
|
2023-12-17 21:13:56 +08:00
|
|
|
- name: Install mdbook-typst-pdf
|
2022-02-19 17:08:39 +08:00
|
|
|
run: |
|
2023-12-17 21:46:29 +08:00
|
|
|
curl -sL -o bin/mdbook-typst-pdf https://github.com/KaiserY/mdbook-typst-pdf/releases/download/0.1.1/mdbook-typst-pdf-x86_64-unknown-linux-gnu
|
2023-12-17 21:13:56 +08:00
|
|
|
chmod +x bin/mdbook-typst-pdf
|
2022-02-19 17:08:39 +08:00
|
|
|
echo "$(pwd)/bin" >> ${GITHUB_PATH}
|
|
|
|
- name: Install font
|
|
|
|
run: |
|
2022-08-27 22:46:00 +08:00
|
|
|
echo ttf-mscorefonts-installer msttcorefonts/accepted-mscorefonts-eula select true | sudo debconf-set-selections
|
2023-12-17 21:46:29 +08:00
|
|
|
sudo apt-get -y install msttcorefonts fonts-arphic-ukai fonts-arphic-uming fonts-ipafont-mincho fonts-ipafont-gothic fonts-unfonts-core
|
|
|
|
sudo apt-get -y install ttf-wqy*
|
|
|
|
fc-cache -f -v
|
2021-07-07 11:09:42 +08:00
|
|
|
- name: Report versions
|
|
|
|
run: |
|
|
|
|
rustup --version
|
|
|
|
rustc -Vv
|
|
|
|
mdbook --version
|
|
|
|
- name: Run mdBook Build
|
2022-02-19 17:40:30 +08:00
|
|
|
run: |
|
|
|
|
mdbook build
|
2022-02-19 17:55:04 +08:00
|
|
|
mv book/html/* book/
|
2023-12-17 21:13:56 +08:00
|
|
|
mv "book/typst-pdf/Rust 程序设计语言 简体中文版.pdf" book/
|
2022-02-19 17:47:59 +08:00
|
|
|
rm -r book/html/
|
2023-12-17 21:13:56 +08:00
|
|
|
rm -rf book/typst-pdf/
|
2021-08-08 19:37:30 +08:00
|
|
|
- name: Deploy gh-pages
|
|
|
|
if: ${{ github.ref == 'refs/heads/main' }}
|
2021-07-07 11:09:42 +08:00
|
|
|
uses: peaceiris/actions-gh-pages@v3
|
|
|
|
with:
|
|
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
publish_dir: ./book
|
|
|
|
force_orphan: true
|
2022-02-06 16:46:31 +08:00
|
|
|
enable_jekyll: true
|