Skip to content

Ci fix deployment

Ci fix deployment #106

Workflow file for this run

name: zh-CN Translation
on:
push:
branches:
- zh-CN
pull_request:
branches:
- zh-CN
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install mdbook
uses: actions-rs/[email protected]
with:
crate: mdbook
version: latest
use-tool-cache: true
- name: Install mdbook-linkcheck
uses: actions-rs/[email protected]
with:
crate: mdbook-linkcheck
version: latest
use-tool-cache: true
- name: Redirect with book_zh-CN.toml
run: rm book.toml && mv book_zh-CN.toml book.toml
- name: Build mdbook
run: mdbook build && pwd
- name: Cache artifact
uses: actions/upload-artifact@v4
with:
name: book
path: ./book
deploy:
if: github.event_name == 'push'
needs: build
runs-on: ubuntu-latest
steps:
- name: Get artifact
uses: actions/download-artifact@v4
with:
name: book
- name: Deploy
uses: peaceiris/actions-gh-pages@v4
with:
deploy_key: ${{ secrets.ACTIONS_DEPLOY_KEY }}
publish_dir: ./book/html
publish_branch: gh-pages
allow_empty_commit: true
user_name: "huangjj27"
user_email: "[email protected]"
force_orphan: true