Skip to content

fix(federation): preserve backend pagination in federated list responses #69

fix(federation): preserve backend pagination in federated list responses

fix(federation): preserve backend pagination in federated list responses #69

Workflow file for this run

name: Publish Book
on:
workflow_dispatch:
pull_request:
paths:
- ".github/workflows/pages.yml"
- "docs/book/**"
push:
branches: [main]
paths:
- ".github/workflows/pages.yml"
- "docs/book/**"
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
concurrency:
group: pages-build-${{ github.ref }}
cancel-in-progress: true
steps:
- uses: actions/checkout@v6.0.2
- name: Install mdBook
uses: taiki-e/install-action@v2.75.27
with:
tool: mdbook@0.5.3
- name: Build book
run: mdbook build docs/book
- name: Upload Pages artifact
uses: actions/upload-pages-artifact@v4
with:
path: docs/book/book
deploy:
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
needs: build
runs-on: ubuntu-latest
permissions:
contents: read
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
concurrency:
group: pages
cancel-in-progress: false
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4