diff options
Diffstat (limited to '')
| -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 3da242bc7..f2368be6f 100644 --- a/.ci/scripts/windows/upload.ps1 +++ b/.ci/scripts/windows/upload.ps1 | |||
| @@ -57,6 +57,10 @@ Copy-Item .\CMakeModules -Recurse -Destination $MSVC_SOURCE | |||
| 57 | if ("$env:GITHUB_ACTIONS" -eq "true") { | 57 | if ("$env:GITHUB_ACTIONS" -eq "true") { |
| 58 | echo "Hello GitHub Actions" | 58 | echo "Hello GitHub Actions" |
| 59 | 59 | ||
| 60 | # With vcpkg we now have a few more dll files | ||
| 61 | ls .\build\bin\*.dll | ||
| 62 | cp .\build\bin\*.dll .\artifacts\ | ||
| 63 | |||
| 60 | # Hopefully there is an exe in either .\build\bin or .\build\bin\Release | 64 | # Hopefully there is an exe in either .\build\bin or .\build\bin\Release |
| 61 | cp .\build\bin\yuzu*.exe .\artifacts\ | 65 | cp .\build\bin\yuzu*.exe .\artifacts\ |
| 62 | Copy-Item "$BUILD_DIR\*" -Destination "artifacts" -Recurse | 66 | Copy-Item "$BUILD_DIR\*" -Destination "artifacts" -Recurse |
| @@ -112,6 +116,3 @@ Get-ChildItem . -Filter "*.zip" | Copy-Item -destination "artifacts" | |||
| 112 | Get-ChildItem . -Filter "*.7z" | Copy-Item -destination "artifacts" | 116 | Get-ChildItem . -Filter "*.7z" | Copy-Item -destination "artifacts" |
| 113 | Get-ChildItem . -Filter "*.tar.xz" | Copy-Item -destination "artifacts" | 117 | Get-ChildItem . -Filter "*.tar.xz" | Copy-Item -destination "artifacts" |
| 114 | } | 118 | } |
| 115 | # Extra items | ||
| 116 | git status | ||
| 117 | cp .\build\src\common\scm_rev.cpp .\artifacts | ||