diff --git a/.github/workflows/windows-clang.yml b/.github/workflows/windows-clang.yml index 800dee75..67c24d1c 100644 --- a/.github/workflows/windows-clang.yml +++ b/.github/workflows/windows-clang.yml @@ -46,7 +46,7 @@ jobs: - name: Package for Windows run: | mkdir packaged - cp build/Release/* packaged/ + cp -r build/Release/* packaged/ cp build/vctest/Release/vctest.exe packaged/ cp C:/Windows/System32/msvcp140.dll packaged/msvcp140.dll mv packaged/VoxelEngine.exe packaged/VoxelCore.exe diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index e2bd4527..cc95fe82 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -42,7 +42,7 @@ jobs: - name: Package for Windows run: | mkdir packaged - cp build/Release/* packaged/ + cp -r build/Release/* packaged/ cp build/vctest/Release/vctest.exe packaged/ cp C:/Windows/System32/msvcp140.dll packaged/msvcp140.dll mv packaged/VoxelEngine.exe packaged/VoxelCore.exe