From edca454f8ddfd208151d2726b28504606ea3c7fa Mon Sep 17 00:00:00 2001 From: Lucas Nicodemus Date: Mon, 18 May 2020 00:35:28 -0700 Subject: [PATCH] Use xcopy to copy actions artifacts --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 2a280e8f..10907698 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -46,10 +46,10 @@ jobs: nuget restore TShock.sln "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\MSBuild\Current\Bin\msbuild.exe" .\TShockAPI\TShockAPI.csproj /p:Configuration=Release - name: Copy prebuilts into output folders - shell: pwsh + shell: cmd run: | - cp -rf .\prebuilts\* TShockAPI\bin\Release - cp -rf .\prebuilts\* TShockAPI\bin\Debug + xcopy /Y prebuilts\*.* TShockAPI\bin\Release + xcopy /Y prebuilts\*.* TShockAPI\bin\Debug - uses: actions/upload-artifact@master with: name: Experimental TShock (not debug)