mirror of
https://github.com/openstenoproject/qmk
synced 2024-11-09 18:19:08 +00:00
Preinstall python dependencies before executing qmk
. (#16874)
This commit is contained in:
parent
f50a623909
commit
6819420b0e
1 changed files with 3 additions and 1 deletions
4
.github/workflows/develop_api.yml
vendored
4
.github/workflows/develop_api.yml
vendored
|
@ -24,7 +24,9 @@ jobs:
|
|||
persist-credentials: false
|
||||
|
||||
- name: Generate API Data
|
||||
run: qmk generate-api
|
||||
run: |
|
||||
python3 -m pip install -r requirements-dev.txt
|
||||
qmk generate-api
|
||||
|
||||
- name: Upload API Data
|
||||
uses: jakejarvis/s3-sync-action@master
|
||||
|
|
Loading…
Reference in a new issue