Skip to content

fix(coops): split GeoJSON stubs from SensorML bodies for strict csapi… #7

fix(coops): split GeoJSON stubs from SensorML bodies for strict csapi…

fix(coops): split GeoJSON stubs from SensorML bodies for strict csapi… #7

Workflow file for this run

name: Docs2Pages
on: [ push, pull_request, workflow_dispatch ]
permissions: {}
jobs:
build:
runs-on: ubuntu-latest
concurrency:
group: docs-build-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Install uv
uses: astral-sh/setup-uv@v6
- name: Install Python 3.13
run: uv python install 3.13
- name: Install dependencies
run: uv sync --all-extras
- name: Build MkDocs site
run: uv run mkdocs build --strict
- name: Upload Pages artifact
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
uses: actions/upload-pages-artifact@v3
with:
path: ./docs/build/html
deploy:
needs: build
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
runs-on: ubuntu-latest
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
# Per GitHub Pages guidance: don't cancel an in-flight deploy.
concurrency:
group: pages
cancel-in-progress: false
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4