chore: added more docs/examples to with_user_session_token #504
Workflow file for this run
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: Site | |
on: | |
push: | |
tags: | |
- "v*.*.*" | |
pull_request: | |
permissions: | |
id-token: write | |
pages: write | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
site: | |
if: github.event_name == 'push' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: astral-sh/setup-uv@v3 | |
- run: uv python install | |
- run: make build install | |
- uses: quarto-dev/quarto-actions/setup@v2 | |
- run: make docs | |
- uses: actions/configure-pages@v3 | |
- uses: actions/upload-pages-artifact@v3 | |
with: | |
path: "./docs/_site" | |
- uses: actions/deploy-pages@v4 | |
preview: | |
if: github.event_name == 'pull_request' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: astral-sh/setup-uv@v3 | |
- run: uv python install | |
- uses: actions/setup-node@v4 | |
- uses: quarto-dev/quarto-actions/setup@v2 | |
- run: make dev | |
- run: make docs | |
- id: preview | |
working-directory: docs | |
env: | |
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }} | |
run: | | |
preview_url=$(make deploy | jq '.deploy_url' | tail -n 1 | tr -d '"') | |
echo "# 🚀 Site Preview" >> $GITHUB_STEP_SUMMARY | |
echo "$preview_url" >> $GITHUB_STEP_SUMMARY |