Skip to content

Commit e7daacb

Browse files
committed
debug
1 parent 460465e commit e7daacb

File tree

2 files changed

+16
-2
lines changed

2 files changed

+16
-2
lines changed

.github/workflows/build-linux-installer-deb.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
strategy:
5353
fail-fast: false
5454
matrix:
55-
python-version: ["3"]
55+
python-version: ["3.12"]
5656
os:
5757
- runs-on: ubuntu-latest
5858
arch: amd64
@@ -97,6 +97,13 @@ jobs:
9797
with:
9898
python-version: "3.12"
9999

100+
- name: Show available python binaries
101+
run: |
102+
which python || echo "python not found"
103+
which python3 || echo "python3 not found"
104+
which python3.12 || echo "python3.12 not found"
105+
ls -l $(dirname $(which python3)) | grep python
106+
100107
- name: Setup Node per .nvmrc in GUI
101108
uses: actions/setup-node@v5
102109
with:

.github/workflows/build-linux-installer-rpm.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
strategy:
5454
fail-fast: false
5555
matrix:
56-
python-version: ["3"]
56+
python-version: ["3.12"]
5757
os:
5858
- arch-artifact-name: intel
5959

@@ -87,6 +87,13 @@ jobs:
8787
with:
8888
python-version: "3.12"
8989

90+
- name: Show available python binaries
91+
run: |
92+
which python || echo "python not found"
93+
which python3 || echo "python3 not found"
94+
which python3.12 || echo "python3.12 not found"
95+
ls -l $(dirname $(which python3)) | grep python
96+
9097
- name: Setup Node per .nvmrc in GUI
9198
uses: actions/setup-node@v5
9299
with:

0 commit comments

Comments
 (0)