Skip to content

Commit 6fa4b81

Browse files
committed
WIP: list files on windows
1 parent af6e8f3 commit 6fa4b81

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/cmake-test-on.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,11 @@ jobs:
142142
# Create tarball
143143
tar -czvf ${{ env.OUTPUT_BINARY }}.tar.gz -C dist .
144144
145+
- name: List files (windows)
146+
if: ${{ matrix.variant == 'Release' && inputs.os == 'windows' }}
147+
run: |
148+
Get-ChildItem -Recurse .
149+
145150
- name: Package artifact (windows)
146151
if: ${{ matrix.variant == 'Release' && inputs.os == 'windows' }}
147152
run: |
@@ -151,11 +156,6 @@ jobs:
151156
Copy-Item @("README.md", "LICENSE", "ORIGIN.md") dist\
152157
Copy-Item "${{ steps.locate-windows.outputs.binary }}" dist\firestarr.exe
153158
154-
echo "Listing vcpkg"
155-
echo "*****************************************************************"
156-
Get-ChildItem -Recurse vcpkg
157-
echo "*****************************************************************"
158-
159159
# Copy required DLLs from vcpkg depending on variant
160160
copy @((Get-ChildItem -Recurse vcpkg\packages\*.dll).FullName | Select-String ${{ case( matrix.variant == 'Debug', '', '-notMatch' ) }} debug | Select-String bin ) dist\
161161

0 commit comments

Comments
 (0)