chore(deps): update rust crate thiserror to v2.0.7 (#1685) #361
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Python & Rust docs | |
on: | |
push: | |
branches: [ develop ] | |
permissions: | |
actions: read | |
deployments: write | |
contents: write | |
pages: write | |
id-token: write | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/cleanup | |
- uses: ./.github/actions/setup-rust | |
- uses: spiraldb/actions/.github/actions/[email protected] | |
- name: build Python and Rust docs | |
run: | | |
uv run make -C docs python-and-rust-html | |
- name: commit python docs to gh-pages-bench | |
run: | | |
set -ex | |
built_sha=$(git rev-parse HEAD) | |
rm -rf docs/_build/html/rust/CACHETAG.DIR docs/_build/html/rust/debug | |
mkdir /tmp/html | |
mv docs/_build/html /tmp/html/docs | |
mkdir -p /tmp/html/dev | |
mv benchmarks-website /tmp/html/dev/bench | |
- name: Upload static files as artifact | |
id: deployment | |
uses: actions/upload-pages-artifact@v3 | |
with: | |
path: /tmp/html/ | |
deploy: | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- name: Deploy to GitHub Pages | |
id: deployment | |
uses: actions/deploy-pages@v4 |