2023-03-15 13:10:53 +00:00
|
|
|
name: OpenAPI
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
2023-06-12 09:34:44 +00:00
|
|
|
- 'master'
|
2023-03-15 13:10:53 +00:00
|
|
|
paths:
|
|
|
|
- 'openapi.yaml'
|
|
|
|
- '.github/workflows/docs.yml'
|
2023-03-23 11:19:33 +00:00
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- '**'
|
|
|
|
paths:
|
|
|
|
- 'openapi.yaml'
|
|
|
|
- '.github/workflows/docs.yml'
|
2023-03-15 13:10:53 +00:00
|
|
|
|
|
|
|
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
|
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
pages: write
|
|
|
|
id-token: write
|
|
|
|
|
|
|
|
jobs:
|
2023-03-23 11:19:33 +00:00
|
|
|
lint:
|
|
|
|
name: Lint
|
2023-03-15 13:10:53 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
with:
|
|
|
|
fetch-depth: '0'
|
|
|
|
|
|
|
|
- uses: actions/setup-node@v3
|
|
|
|
with:
|
|
|
|
node-version: 18
|
|
|
|
|
|
|
|
- name: Lint OpenAPI
|
|
|
|
shell: bash
|
|
|
|
run: npx @redocly/cli lint openapi.yaml
|
|
|
|
|
2023-03-23 11:19:33 +00:00
|
|
|
deploy:
|
|
|
|
name: Deploy
|
|
|
|
runs-on: ubuntu-latest
|
2023-06-12 09:34:44 +00:00
|
|
|
if: github.ref == 'refs/heads/master'
|
2023-03-23 11:19:33 +00:00
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
with:
|
|
|
|
fetch-depth: '0'
|
|
|
|
|
|
|
|
- uses: actions/setup-node@v3
|
|
|
|
with:
|
|
|
|
node-version: 18
|
|
|
|
|
2023-03-15 13:10:53 +00:00
|
|
|
- name: Build OpenAPI
|
|
|
|
shell: bash
|
|
|
|
run: npx @redocly/cli build-docs openapi.yaml --output "openapi/index.html" --title "Codex API"
|
|
|
|
|
|
|
|
- name: Upload artifact
|
|
|
|
uses: actions/upload-pages-artifact@v1
|
|
|
|
with:
|
|
|
|
path: './openapi'
|
|
|
|
|
|
|
|
- name: Deploy to GitHub Pages
|
|
|
|
uses: actions/deploy-pages@v1
|