Skip to content

Commit 8413769

Browse files
committed
Debugging tar
Signed-off-by: Gary Oberbrunner <[email protected]>
1 parent fb82676 commit 8413769

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

.github/workflows/build.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -220,11 +220,11 @@ jobs:
220220
- name: Check python, uv paths
221221
run: |
222222
echo $PATH
223-
which python
224-
which python3
225-
python --version
226-
python3 --version
227-
which uv || true
223+
echo -n 'which python: ' && which python
224+
echo -n 'which python3: ' && which python3
225+
echo -n 'python version: ' && python --version
226+
echo -n 'python3 version: ' python3 --version
227+
which uv || echo "No python uv; continuing"
228228
229229
- name: Install Conan
230230
id: conan
@@ -349,7 +349,9 @@ jobs:
349349
# Create and sign headers/libs tarball
350350
- name: Create headers/libs tarball
351351
run: |
352+
echo -n 'Build dir ${{ env.BUILD_DIR }}: ' && ls -l ${{ env.BUILD_DIR }}
352353
(cd ${{ env.BUILD_DIR }} && find . -name "lib*") > ./libfiles.txt
354+
echo 'libfiles.txt: ' && cat libfiles.txt
353355
tar -czf openfx-$RELEASE_NAME.tar.gz \
354356
-C ${{ env.BUILD_DIR }}
355357
-T ./libfiles.txt \

0 commit comments

Comments
 (0)