forked from pulp/pulp-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
35 lines (28 loc) · 885 Bytes
/
update-data.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
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: |
xargs sudo apt -y install < requirements_system.txt
- name: "Install Python dependencies"
run: |
pip install --upgrade pip
pip install -r requirements_python.txt
# experiments with the deps to get it working
# - name: Setup tmate session
# uses: mxschmitt/action-tmate@v3
- name: "Generate, commit and push updated openapi specs"
run: |
python -m pulp_docs.openapi data/openapi_json/ -l pulp_ostree
./update-data.sh