Installation with Helm and doc rework (#293) #7
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 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" | |
Trigger-Docusaurus-Update: | |
uses: ./.github/workflows/build_docusaurus.yaml |