generated from interTwin-eu/repository-template
-
Notifications
You must be signed in to change notification settings - Fork 14
79 lines (64 loc) · 2.22 KB
/
build_openapi.yaml
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
name: Update OpenAPI
on:
push:
tags:
- '*'
jobs:
update-openapi:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.x' # specify the Python version you need
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r example/requirements.txt # if you have a requirements file
- name: Run script to generate OpenAPI JSON
run: python example/create_openapi.py
- name: Upload OpenAPI JSON as an artifact
uses: actions/upload-artifact@v4
with:
name: openapi.json
path: ./docs/openapi/openapi.json
- name: Upload json to release
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: ./docs/openapi/openapi.json
asset_name: openAPISpec
tag: ${{ github.ref }}
overwrite: true
body: "OpenAPI spec for plugin REST"
update-doc:
needs: update-openapi
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install dependencies
run: |
rm ./docs/openapi/openapi.json
- name: Download artifact from the latest workflow run
uses: actions/download-artifact@v4
with:
name: openapi.json # Name of the artifact you want to download
path: ./docs/openapi # Directory where the artifact will be downloaded
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '22' # Ensure this matches the Node.js version required by Docusaurus
- name: Install dependencies
working-directory: ./docs # Change to the directory where package.json is located
run: npm install
- name: Build Docusaurus site
working-directory: ./docs # Change to the directory where package.json is located
run: npm run build
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs/build # Ensure this matches the build output directory of Docusaurus