给简历增加 GPG 指纹 #144
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Mdbook Pages | |
on: | |
push: | |
branches: dev | |
pull_request: | |
branches: dev | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install mdbook | |
uses: actions-rs/[email protected] | |
with: | |
crate: mdbook | |
version: latest | |
use-tool-cache: true | |
- name: Build mdbook | |
run: mdbook build | |
- name: Cache artifact | |
uses: actions/upload-artifact@v1 | |
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@v1 | |
with: | |
name: book | |
- name: Deploy | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
deploy_key: ${{ secrets.ACTIONS_DEPLOY_KEY }} | |
publish_dir: ./book | |
publish_branch: master | |
allow_empty_commit: true | |
user_name: "huangjj27" | |
user_email: "[email protected]" | |
force_orphan: true |