Skip to content

Merge pull request #90 from RustyYato/ptr-union-clone-fix #95

Merge pull request #90 from RustyYato/ptr-union-clone-fix

Merge pull request #90 from RustyYato/ptr-union-clone-fix #95

Workflow file for this run

name: rustdoc
on:
push:
branches:
- master
jobs:
cargo-doc:
runs-on: ubuntu-latest
env:
CARGO_INCREMENTAL: 0
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Install beta toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: beta
profile: minimal
override: true
- name: Build docs
uses: actions-rs/cargo@v1
with:
command: doc
args: --no-deps
- name: Deploy docs
uses: peaceiris/actions-gh-pages@v3
with:
deploy_key: ${{ secrets.ACTIONS_DEPLOY_KEY }}
github_token: ${{ github.token }}
publish_dir: ./target/doc
force_orphan: true