build(deps): bump tyro from 1.0.9 to 1.0.10 in the python-dependencie… #70
This file contains hidden or 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: Docs | |
| permissions: | |
| contents: read | |
| env: | |
| NODE_LATEST_VERSION: 24 | |
| on: | |
| push: | |
| branches: | |
| - main | |
| concurrency: | |
| group: "pages" | |
| cancel-in-progress: false | |
| jobs: | |
| build: | |
| name: Build VitePress | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: ${{ env.NODE_LATEST_VERSION }} | |
| cache: 'npm' | |
| - name: dependencies | |
| run: npm ci | |
| - name: build | |
| run: npm run docs | |
| - name: upload | |
| uses: actions/upload-pages-artifact@v4 | |
| with: | |
| path: .vitepress/dist | |
| deploy: | |
| name: Deploy to Pages | |
| runs-on: ubuntu-latest | |
| needs: build | |
| environment: | |
| name: github-pages | |
| url: ${{ steps.deployment.outputs.page_url }} | |
| permissions: | |
| pages: write | |
| id-token: write | |
| steps: | |
| - name: deploy | |
| id: deployment | |
| uses: actions/deploy-pages@v5 |