Skip to content

Commit 1de0241

Browse files
committed
Fix uv python install, symlinks
Signed-off-by: Gary Oberbrunner <[email protected]>
1 parent a9a6e0a commit 1de0241

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -206,9 +206,12 @@ jobs:
206206
# add to PATH
207207
PATH=$PATH:/opt/venv/bin
208208
echo "/opt/venv/bin" >> $GITHUB_PATH
209-
ln -sf /opt/venv/bin/python3 /usr/local/bin/python
209+
ln -sf /opt/venv/bin/python3 /usr/local/bin/python
210+
ln -sf /opt/venv/bin/python3 /usr/local/bin/python3
210211
which python
212+
which python3
211213
python --version
214+
python3 --version
212215
213216
- name: Install Conan
214217
id: conan
@@ -218,6 +221,7 @@ jobs:
218221

219222
- name: Set up conan
220223
run: |
224+
which conan
221225
conan profile detect
222226
223227
- name: Install system dependencies if needed
@@ -350,7 +354,6 @@ jobs:
350354
# if: github.event_name == 'release'
351355
with:
352356
inputs: openfx-${{ env.RELEASE_NAME }}.tar.gz
353-
outputs: sig, crt
354357
upload-signing-artifacts: false
355358
release-signing-artifacts: false
356359

@@ -376,7 +379,6 @@ jobs:
376379
# if: github.event_name == 'release'
377380
with:
378381
inputs: openfx-plugins-${{ env.RELEASE_NAME }}.tar.gz
379-
outputs: sig, crt
380382
upload-signing-artifacts: false
381383
release-signing-artifacts: false
382384

0 commit comments

Comments
 (0)