diff options
author | Kyle Kienapfel <Docteh@users.noreply.github.com> | 2022-07-26 00:56:10 +0200 |
---|---|---|
committer | Kyle Kienapfel <Docteh@users.noreply.github.com> | 2022-07-27 07:57:23 +0200 |
commit | 81f66eec0c59d9d1270f571202c4e32a1fb0a7b4 (patch) | |
tree | 3fd631477b833948b67e8b8675523fa44fe58a34 /.ci/scripts | |
parent | Merge pull request #8545 from Kelebek1/Audio (diff) | |
download | yuzu-81f66eec0c59d9d1270f571202c4e32a1fb0a7b4.tar yuzu-81f66eec0c59d9d1270f571202c4e32a1fb0a7b4.tar.gz yuzu-81f66eec0c59d9d1270f571202c4e32a1fb0a7b4.tar.bz2 yuzu-81f66eec0c59d9d1270f571202c4e32a1fb0a7b4.tar.lz yuzu-81f66eec0c59d9d1270f571202c4e32a1fb0a7b4.tar.xz yuzu-81f66eec0c59d9d1270f571202c4e32a1fb0a7b4.tar.zst yuzu-81f66eec0c59d9d1270f571202c4e32a1fb0a7b4.zip |
Diffstat (limited to '.ci/scripts')
-rw-r--r-- | .ci/scripts/windows/upload.ps1 | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/.ci/scripts/windows/upload.ps1 b/.ci/scripts/windows/upload.ps1 index ac2a38f1d..3bb0c5fe5 100644 --- a/.ci/scripts/windows/upload.ps1 +++ b/.ci/scripts/windows/upload.ps1 @@ -54,6 +54,10 @@ Copy-Item .\CMakeModules -Recurse -Destination $MSVC_SOURCE if ("$env:GITHUB_ACTIONS" -eq "true") { echo "Hello GitHub Actions" + # With vcpkg we now have a few more dll files + ls .\build\bin\*.dll + cp .\build\bin\*.dll .\artifacts\ + # Hopefully there is an exe in either .\build\bin or .\build\bin\Release cp .\build\bin\yuzu*.exe .\artifacts\ Copy-Item "$BUILD_DIR\*" -Destination "artifacts" -Recurse @@ -109,6 +113,3 @@ Get-ChildItem . -Filter "*.zip" | Copy-Item -destination "artifacts" Get-ChildItem . -Filter "*.7z" | Copy-Item -destination "artifacts" Get-ChildItem . -Filter "*.tar.xz" | Copy-Item -destination "artifacts" } -# Extra items -git status -cp .\build\src\common\scm_rev.cpp .\artifacts |