Skip to content

Update vendored openapi.json to match upstream (#232) #9

Update vendored openapi.json to match upstream (#232)

Update vendored openapi.json to match upstream (#232) #9

Workflow file for this run

name: API Docs
on:
push:
branches: [main]
paths:
- openapi.json
- docs/api/**
permissions:
pages: write
id-token: write
concurrency:
group: pages
cancel-in-progress: true
jobs:
deploy:
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- uses: actions/checkout@v4
- name: Prepare site
run: |
mkdir _site
cp openapi.json _site/
cp docs/api/index.html _site/
- uses: actions/upload-pages-artifact@v3
- id: deployment
uses: actions/deploy-pages@v4