-
-
Notifications
You must be signed in to change notification settings - Fork 2
39 lines (33 loc) · 898 Bytes
/
gh-pages.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
name: Build docs
on:
push:
paths:
- lemmy_spec.yaml
branches:
- master
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Generate Swagger UI
uses: Legion2/swagger-ui-action@v1
with:
output: public
spec-file: lemmy_spec.yaml
version: 5.3.2
- name: Rename index.html
run: mv public/index.html public/swagger_ui.html
- name: redoc-cli make home API DOCs
uses: MV-GH/redocly-cli-github-action@master
with:
args: 'build-docs lemmy_spec.yaml -o ./public/index.html'
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_branch: gh-pages
publish_dir: ./public