From 34025020b5a34859ecd6f7b3975dc059f3345e26 Mon Sep 17 00:00:00 2001 From: Aleksey Kladov Date: Mon, 18 Nov 2019 11:13:31 +0300 Subject: Switch to Actions --- .github/workflows/rustdoc.yaml | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 .github/workflows/rustdoc.yaml (limited to '.github/workflows/rustdoc.yaml') diff --git a/.github/workflows/rustdoc.yaml b/.github/workflows/rustdoc.yaml new file mode 100644 index 000000000..caa1dcc30 --- /dev/null +++ b/.github/workflows/rustdoc.yaml @@ -0,0 +1,39 @@ +name: rustdoc +on: + push: + branches: + - master + +jobs: + rustdoc: + runs-on: ubuntu-latest + env: + RUSTFLAGS: -D warnings + CARGO_INCREMENTAL: 0 + + steps: + - name: Checkout repository + uses: actions/checkout@v1 + + - name: Install Rust toolchain + uses: actions-rs/toolchain@v1 + with: + toolchain: stable + profile: minimal + override: true + components: rustfmt, rust-src + + - name: Build Documentation + uses: actions-rs/cargo@v1 + with: + command: doc + args: --all --no-deps + + - name: Deploy Docs + uses: peaceiris/actions-gh-pages@v2.6.0-rc0 + env: + ACTIONS_DEPLOY_KEY: ${{ secrets.ACTIONS_DEPLOY_KEY }} + PUBLISH_BRANCH: gh-pages + PUBLISH_DIR: ./target/doc + with: + forceOrphan: true -- cgit v1.2.3