Merge pull request #52 from rust-lang/feature/deploy-docs

Deploy documentation to GitHub Pages
This commit is contained in:
Ashley Mannix 2020-12-29 11:03:41 +10:00 committed by GitHub
commit c7d031cf31
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

30
.github/workflows/doc.yml vendored Normal file
View file

@ -0,0 +1,30 @@
name: Documentation
on:
push:
branches:
- master
jobs:
release:
name: Deploy Documentation
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v1
- name: Setup Rust
run: |
rustup update nightly --no-self-update
rustup default nightly
- name: Build Documentation
run: cargo doc --no-deps
- name: Deploy Documentation
uses: peaceiris/actions-gh-pages@v3
with:
deploy_key: ${{ secrets.ACTIONS_DEPLOY_KEY }}
publish_branch: gh-pages
publish_dir: ./target/doc