Skip to content

Commit 3a2aa9a

Browse files
authored
Update build-release.yml
1 parent 2949b7c commit 3a2aa9a

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

.github/workflows/build-release.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,10 +94,18 @@ jobs:
9494
--collect-all=PyQt6 \
9595
main.py
9696
97-
- name: List dist contents
97+
- name: List dist contents (Windows)
98+
if: matrix.platform == 'windows'
99+
run: |
100+
echo "Contents of dist directory:"
101+
dir dist
102+
shell: cmd
103+
104+
- name: List dist contents (Unix)
105+
if: matrix.platform != 'windows'
98106
run: |
99107
echo "Contents of dist directory:"
100-
ls -la dist/ || dir dist\
108+
ls -la dist/
101109
102110
- name: Upload artifacts
103111
uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)