Use 'not debug' instead of release to avoid ambiguity
This commit is contained in:
parent
e2afd4a745
commit
f999e3dbe9
1 changed files with 5 additions and 5 deletions
10
.github/workflows/build.yml
vendored
10
.github/workflows/build.yml
vendored
|
|
@ -53,19 +53,19 @@ jobs:
|
||||||
with:
|
with:
|
||||||
name: Experimental (debug) OTAPI Bootstrapper
|
name: Experimental (debug) OTAPI Bootstrapper
|
||||||
path: .\TerrariaServerAPI\TShock.Modifications.Bootstrapper\bin\Debug\TShock.Modifications.Bootstrapper.exe
|
path: .\TerrariaServerAPI\TShock.Modifications.Bootstrapper\bin\Debug\TShock.Modifications.Bootstrapper.exe
|
||||||
- name: Build OTAPI (Release)
|
- name: Build OTAPI (Not Debug)
|
||||||
shell: cmd
|
shell: cmd
|
||||||
run: |
|
run: |
|
||||||
nuget restore .\TerrariaServerAPI\TShock.4.OTAPI.sln
|
nuget restore .\TerrariaServerAPI\TShock.4.OTAPI.sln
|
||||||
MSBuild.exe .\TerrariaServerAPI\TShock.4.OTAPI.sln /p:Configuration=Release
|
MSBuild.exe .\TerrariaServerAPI\TShock.4.OTAPI.sln /p:Configuration=Release
|
||||||
cd .\TerrariaServerAPI\TShock.Modifications.Bootstrapper\bin\Release
|
cd .\TerrariaServerAPI\TShock.Modifications.Bootstrapper\bin\Release
|
||||||
TShock.Modifications.Bootstrapper.exe
|
TShock.Modifications.Bootstrapper.exe
|
||||||
- name: Build TerrariaServerAPI (Release)
|
- name: Build TerrariaServerAPI (Not Debug)
|
||||||
shell: cmd
|
shell: cmd
|
||||||
run: |
|
run: |
|
||||||
cd .\TerrariaServerAPI
|
cd .\TerrariaServerAPI
|
||||||
MSBuild.exe .\TerrariaServerAPI\TerrariaServerAPI.csproj /p:Configuration=Release
|
MSBuild.exe .\TerrariaServerAPI\TerrariaServerAPI.csproj /p:Configuration=Release
|
||||||
- name: Build TShock (Release)
|
- name: Build TShock (Not Debug)
|
||||||
shell: cmd
|
shell: cmd
|
||||||
run: |
|
run: |
|
||||||
nuget restore TShock.sln
|
nuget restore TShock.sln
|
||||||
|
|
@ -76,12 +76,12 @@ jobs:
|
||||||
xcopy /Y prebuilts\*.* TShockAPI\bin\Release
|
xcopy /Y prebuilts\*.* TShockAPI\bin\Release
|
||||||
mkdir TShockAPI\bin\Release\ServerPlugins
|
mkdir TShockAPI\bin\Release\ServerPlugins
|
||||||
move TShockAPI\bin\Release\TShockAPI.dll TShockAPI\bin\Release\ServerPlugins
|
move TShockAPI\bin\Release\TShockAPI.dll TShockAPI\bin\Release\ServerPlugins
|
||||||
- name: Upload TShock (Release)
|
- name: Upload TShock (Not Debug)
|
||||||
uses: actions/upload-artifact@master
|
uses: actions/upload-artifact@master
|
||||||
with:
|
with:
|
||||||
name: Experimental TShock (not debug)
|
name: Experimental TShock (not debug)
|
||||||
path: TShockAPI\bin\Release
|
path: TShockAPI\bin\Release
|
||||||
- name: Upload OTAPI Bootstrapper (Release)
|
- name: Upload OTAPI Bootstrapper (Not Debug)
|
||||||
uses: actions/upload-artifact@master
|
uses: actions/upload-artifact@master
|
||||||
with:
|
with:
|
||||||
name: Experimental (not debug) OTAPI Bootstrapper
|
name: Experimental (not debug) OTAPI Bootstrapper
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue