diff --git a/.github/workflows/upload_deploy.yml b/.github/workflows/upload_deploy.yml index 930aa55..ceb7382 100644 --- a/.github/workflows/upload_deploy.yml +++ b/.github/workflows/upload_deploy.yml @@ -61,13 +61,13 @@ jobs: - name: Copy Markdown run: | - New-Item -Path . -Name "Md" -ItemType "directory" + mkdir -p ./Md/ cp ./CAPI/CAPI接口(cpp).md ./Md/ cp ./CAPI/CAPI接口(python).md ./Md/ cp ./CAPI/Tool_tutorial.md ./Md/ - cp Q&A.md ./Md/ - cp 使用文档.md ./Md/ - cp GameRules.md ./Md/ + cp ./QandA.md ./Md/ + cp ./使用文档.md ./Md/ + cp ./logic/GameRules.md ./Md/ - name: Markdown to PDF and HTML uses: BaileyJM02/markdown-to-pdf@v1.2.0 diff --git a/Q&A.md b/QandA.md similarity index 100% rename from Q&A.md rename to QandA.md diff --git a/dependency/shell/publish.cmd b/dependency/shell/publish.cmd deleted file mode 100644 index d81d05c..0000000 --- a/dependency/shell/publish.cmd +++ /dev/null @@ -1,8 +0,0 @@ -@ECHO OFF -CD %~dp0 -dotnet publish "../../Logic/Server/Server.csproj" -c Release -r linux-x64 --self-contained true -dotnet publish "../../Logic/Server/Server.csproj" -c Release -r win-x64 --self-contained true -dotnet publish "../../Logic/Server/Server.csproj" -c Debug -r win-x64 --self-contained true -dotnet publish "../../Logic/Server/Server.csproj" -c Debug -r linux-x64 --self-contained true -dotnet publish "../../Logic/Client/Client.csproj" -c Release -r win-x64 --self-contained true -PAUSE