Skip to content

Commit fe91965

Browse files
fix: update Python command to use specified pythonLocation for version checks (#113)
1 parent 5cfd069 commit fe91965

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/docker-helm.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -97,9 +97,9 @@ jobs:
9797
- name: Check Version
9898
if: steps.list-changed.outputs.changed == 'true'
9999
run: |
100-
python -m pip install -e .
101-
python -m pip install pyyaml
102-
python .github/workflows/scripts/check_version.py
100+
"$pythonLocation/bin/python" -m pip install -e .
101+
"$pythonLocation/bin/python" -m pip install pyyaml
102+
"$pythonLocation/bin/python" .github/workflows/scripts/check_version.py
103103
104104
- name: Run chart-testing (lint)
105105
if: steps.list-changed.outputs.changed == 'true'

0 commit comments

Comments
 (0)