From acabbece8f647f98354f636a174f686df8372a00 Mon Sep 17 00:00:00 2001 From: Henry de Valence Date: Thu, 16 Jan 2020 15:42:33 -0800 Subject: [PATCH] Use actions-rs to install nightly rust. --- .github/workflows/firebase.yml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/.github/workflows/firebase.yml b/.github/workflows/firebase.yml index 77ecb296..50bd8a50 100644 --- a/.github/workflows/firebase.yml +++ b/.github/workflows/firebase.yml @@ -13,10 +13,15 @@ jobs: steps: - uses: actions/checkout@master - - name: Cargo doc + - name: Install latest nightly + uses: actions-rs/toolchain@v1 + with: + toolchain: nightly + override: true + - name: Build docs run: | - cargo +nightly doc --no-deps - - name: GitHub Action for Firebase + cargo doc --no-deps + - name: Deploy to firebase uses: w9jds/firebase-action@v1.1.0 with: args: deploy