Update Data Branch #28
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 Data Branch" | |
on: | |
workflow_dispatch: | |
jobs: | |
update-data: | |
runs-on: "ubuntu-latest" | |
steps: | |
- uses: "actions/checkout@v4" | |
with: | |
ref: docs-data | |
- name: "Set up Python" | |
uses: "actions/setup-python@v5" | |
with: | |
python-version: "3.11" | |
- name: "Install System dependencies" | |
run: | | |
cat requirements_system.txt | |
xargs sudo apt -y install < requirements_system.txt | |
- name: "Install Python dependencies" | |
run: | | |
cat requirements_python.txt | |
pip install --upgrade pip | |
pip install -r requirements_python.txt | |
- name: "Generate, commit and push updated openapi specs" | |
run: | | |
./update-data.sh |