Skip to content

[cargo-nextest] version 0.9.61 #1260

[cargo-nextest] version 0.9.61

[cargo-nextest] version 0.9.61 #1260

Workflow file for this run

on:
push:
branches:
- master
- main
name: Docs
jobs:
docs:
name: Build and deploy documentation
concurrency: ci-${{ github.ref }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@a95ba195448af2da9b00fb742d14ffaaf3c21f43 # v2
- name: Install static-sitemap-cli
run: npm install static-sitemap-cli
- name: Build rustdoc
run: cargo doc --all-features --workspace
- name: Install mdbook
uses: taiki-e/install-action@995577ee34ef3eec8f1efd48d4711c6a5c0ff439 # v2
with:
tool: [email protected]
- name: Run mdbook
run: |
cd site
mdbook build
- name: Generate sitemap
run: |
cd site/output
npx sscli --base https://nexte.st
- name: Organize
run: |
rm -rf target/gh-pages
mv site/output target/gh-pages
mv target/doc target/gh-pages/rustdoc
- name: Deploy
uses: JamesIves/github-pages-deploy-action@releases/v4
with:
branch: gh-pages
folder: target/gh-pages
single-commit: true