C++笔记更新了运算符重载和智能指针与移动语义的一些基础知识 #37
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: Implement gh-deploy with GitHub Actions | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout main | |
uses: actions/checkout@v4 | |
- run: pip install mkdocs-material | |
- run: pip install mkdocs-changelog-plugin | |
- run: pip install neoteroi-mkdocs | |
- run: pip install mkdocs-statistics-plugin | |
- run: pip install mkdocs-git-revision-date-localized-plugin | |
- run: pip install mkdocs-print-site-plugin | |
- run: pip install mkdocs-mermaid2-plugin | |
- run: pip3 install mdx_truly_sane_lists | |
- run: git clone https://github.com/TonyCrane/mkdocs-toolchain.git | |
- run: ls | |
- run: pip install ./mkdocs-toolchain/mkdocs-toc-plugin/ | |
- run: mkdocs gh-deploy --force |