Skip to content

Commit

Permalink
action
Browse files Browse the repository at this point in the history
  • Loading branch information
mostafa6765 committed Jul 7, 2024
1 parent ad0c15d commit 12439ee
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/electron-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,18 @@ jobs:
run: |
if [[ "${{ matrix.os }}" == 'ubuntu-latest' ]]; then
pnpm run build:linux
cd resources && ls -la
cd dist && ls -la
elif [[ "${{ matrix.os }}" == 'macos-latest' ]]; then
pnpm run build:mac
elif [[ "${{ matrix.os }}" == 'windows-latest' ]]; then
pnpm run build:win
fi
- name: Display contents of dist directory
run: |
ls -la ./dist
- name: Display contents of dist resources
run: |
ls -la ./resources

0 comments on commit 12439ee

Please sign in to comment.