Skip to content

Commit

Permalink
chore: view dir contents on unix to compare
Browse files Browse the repository at this point in the history
  • Loading branch information
mattyg committed Oct 9, 2023
1 parent 21e704b commit db248fe
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/build-release-lair.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,11 @@ jobs:
path: |
target/release/lair-keystore
if-no-files-found: error
- name: View directory contents
- name: View directory contents (unix)
if: matrix.platform == 'ubuntu-20.04' || matrix.platform == 'macos-11'
run: |
ls -lR
- name: View directory contents (dos)
if: matrix.platform == 'windows-2022'
run: |
tree .
Expand Down

0 comments on commit db248fe

Please sign in to comment.