From 355c7662dd7c75efc2da5096f10959211a76fc94 Mon Sep 17 00:00:00 2001 From: Connor Fitzgerald Date: Mon, 22 Jun 2020 23:40:22 -0400 Subject: [PATCH] [rs] Build Docs with Nightly --- .github/workflows/docs.yml | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 37ccf4d22e..9a42817b9f 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -13,8 +13,20 @@ jobs: - name: Checkout the code uses: actions/checkout@v2 - - name: Build the docs - run: cargo doc --lib --all-features + - name: Install latest nightly + uses: actions-rs/toolchain@v1 + with: + toolchain: nightly + override: true + continue-on-error: true + + - name: Build the docs (nightly) + run: | + cargo +nightly doc --lib --all-features + + - name: Build the docs (stable) + run: cargo +stable doc --lib --all-features + if: ${{ failure() }} - name: Deploy the docs uses: JamesIves/github-pages-deploy-action@releases/v3