Allow custom types for JSON/secure JSON data of plugins (#84) #98
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: rustdoc | |
on: | |
push: | |
branches: | |
- main | |
env: | |
CARGO_INCREMENTAL: 0 | |
CARGO_NET_RETRY: 10 | |
RUSTFLAGS: "-D warnings -W unreachable-pub" | |
RUSTUP_MAX_RETRIES: 10 | |
jobs: | |
rustdoc: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Install Rust toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: nightly | |
profile: minimal | |
override: true | |
components: rustfmt, rust-src | |
- name: Build Documentation | |
run: RUSTDOCFLAGS="--cfg docsrs" cargo doc --no-deps --features reqwest | |
- name: Deploy Docs | |
uses: peaceiris/actions-gh-pages@v3.7.3 | |
with: | |
personal_token: ${{ secrets.PERSONAL_TOKEN }} | |
publish_branch: gh-pages | |
publish_dir: ./target/doc | |
force_orphan: true | |
external_repository: sd2k/sd2k.github.io |