Skip to content

chore(deps): update rust crate pathdiff to 0.2.2 #2685

chore(deps): update rust crate pathdiff to 0.2.2

chore(deps): update rust crate pathdiff to 0.2.2 #2685

Workflow file for this run

on:
push:
branches:
- main
pull_request:
branches:
- main
name: Docs
env:
RUSTFLAGS: -D warnings
RUSTDOCFLAGS: -D warnings
jobs:
docs:
name: Build and deploy documentation
concurrency: ci-${{ github.ref }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4
with:
# The full history is required to make mkdocs' git-revision-date-localized plugin work
fetch-depth: 0
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@23bce251a8cd2ffc3c1075eaa2367cf899916d84 # v2
- name: Install nextest for help text in docs
uses: taiki-e/install-action@nextest
- name: Install uv
uses: eifinger/setup-uv@e9305af4bcb00eda1df5db6e72f5d93902c11da5 # v1.0.2
with:
enable-cache: true
- name: Build rustdoc
run: ./scripts/build-rustdoc.sh
- name: Build site
run: ./scripts/build-site.sh
- name: Organize
run: |
rm -rf target/gh-pages
mv site/output target/gh-pages
mv target/doc target/gh-pages/rustdoc
- name: Publish
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
uses: cloudflare/pages-action@1
with:
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
projectName: nextest
directory: target/gh-pages
gitHubToken: ${{ secrets.GITHUB_TOKEN }}