Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: use pipx for installs in draw-zmk.yml (PEP 668) #118

Merged
merged 2 commits into from
Oct 15, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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