Skip to content

Commit

Permalink
fix(ci): use pipx for installs in draw-zmk.yml (PEP 668) (#118)
Browse files Browse the repository at this point in the history
  • Loading branch information
janwvjaarsveld authored Oct 15, 2024
1 parent bbead1c commit 49d801a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/draw-zmk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,15 +98,15 @@ jobs:

- name: Install keymap-drawer (pypi)
if: inputs.install_branch == ''
run: python3 -m pip install keymap-drawer
run: pipx install keymap-drawer

- name: Install keymap-drawer (git)
if: inputs.install_branch != ''
run: python3 -m pip install "git+${{ inputs.install_repo }}@${{ inputs.install_branch }}"
run: pipx install "git+${{ inputs.install_repo }}@${{ inputs.install_branch }}"

- name: Install west
if: inputs.west_config_path != ''
run: python3 -m pip install west
run: pipx install west

- name: Cache west modules
if: inputs.west_config_path != ''
Expand Down

0 comments on commit 49d801a

Please # to comment.