Skip to content

Commit

Permalink
Preinstall python dependencies before executing qmk. (qmk#16874)
Browse files Browse the repository at this point in the history
  • Loading branch information
tzarc authored and zykrah committed Jul 2, 2022
1 parent c7ce29d commit cdbd7f5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/develop_api.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit cdbd7f5

Please sign in to comment.