Skip to content

Commit 12439ee

Browse files
committed
action
1 parent ad0c15d commit 12439ee

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.github/workflows/electron-build.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,12 +49,18 @@ jobs:
4949
run: |
5050
if [[ "${{ matrix.os }}" == 'ubuntu-latest' ]]; then
5151
pnpm run build:linux
52-
cd resources && ls -la
53-
cd dist && ls -la
5452
elif [[ "${{ matrix.os }}" == 'macos-latest' ]]; then
5553
pnpm run build:mac
5654
elif [[ "${{ matrix.os }}" == 'windows-latest' ]]; then
5755
pnpm run build:win
5856
fi
5957
58+
- name: Display contents of dist directory
59+
run: |
60+
ls -la ./dist
61+
62+
- name: Display contents of dist resources
63+
run: |
64+
ls -la ./resources
65+
6066

0 commit comments

Comments
 (0)