Skip to content
This repository has been archived by the owner on Oct 30, 2024. It is now read-only.

Bump MSRV to 1.80 + add with_env to builder #6

Bump MSRV to 1.80 + add with_env to builder

Bump MSRV to 1.80 + add with_env to builder #6

Workflow file for this run

name: rustdoc to gh-pages
on:
push:
branches:
- main
env:
CARGO_TERM_COLOR: always
jobs:
release:
name: GitHub Pages
runs-on: ubuntu-latest
steps:
- name: Checkout the Repository
uses: actions/checkout@v2
- name: Install the Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
profile: minimal
override: true
- name: Build the Documentation
run: |
RUSTDOCFLAGS="\
--enable-index-page \
-Zunstable-options \
" cargo doc --no-deps
- name: Deploy the Documentation
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_branch: gh-pages
publish_dir: ./target/doc