Skip to content

Commit 2886b9a

Browse files
[DEBUG] Possible fix for braindead Windows weirdness (- WIP PR #448 -)
Changes in file .github/actions/checkout-and-rebuild/action.yml: * revert to use python for pip-upgrade on windows in CI/CD, because it buggs out on windows paths in bash
1 parent f53f6ec commit 2886b9a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/actions/checkout-and-rebuild/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ runs:
9292
python-version: ${{ inputs.python-version }}
9393
cache: 'pip' # caching pip dependencies
9494
if: ${{ !cancelled() }}
95-
- run: ${{ steps.cp313.outputs.python-path }} -m pip install --upgrade pip
95+
- run: python -m pip install --upgrade pip
9696
shell: bash
9797
if: ${{ !cancelled() && runner.os == 'Windows' }}
9898
- id: output_python_env

0 commit comments

Comments
 (0)