mirror of
https://github.com/islehorse/HISP.git
synced 2025-04-12 07:59:48 +12:00
copy data needed
This commit is contained in:
parent
990aaf7aaa
commit
89a40382fe
1 changed files with 21 additions and 6 deletions
27
.github/workflows/dotnet.yml
vendored
27
.github/workflows/dotnet.yml
vendored
|
@ -28,24 +28,39 @@ jobs:
|
||||||
|
|
||||||
- name: Build win-64
|
- name: Build win-64
|
||||||
continue-on-error: true
|
continue-on-error: true
|
||||||
run: dotnet publish -p:PublishProfile=Win64.pubxml
|
run: |
|
||||||
|
dotnet publish -p:PublishProfile=Win64.pubxml
|
||||||
|
cp ../DataCollection/gamedata.json "Horse Isle Server/HorseIsleServer/bin/Windows/net5.0/win-x64/publish/"
|
||||||
|
cp ../DataCollection/HI1.MAP "Horse Isle Server/HorseIsleServer/bin/Windows/net5.0/win-x64/publish/"
|
||||||
|
|
||||||
- name: Build win-32
|
- name: Build win-32
|
||||||
continue-on-error: true
|
continue-on-error: true
|
||||||
run: dotnet publish -p:PublishProfile=Win32.pubxml
|
run: |
|
||||||
|
dotnet publish -p:PublishProfile=Win32.pubxml
|
||||||
|
cp ../DataCollection/gamedata.json "Horse Isle Server/HorseIsleServer/bin/x86/Windows/net5.0/win-x86/publish/"
|
||||||
|
cp ../DataCollection/HI1.MAP "Horse Isle Server/HorseIsleServer/bin/x86/Windows/net5.0/win-x86/publish/"
|
||||||
|
|
||||||
|
|
||||||
- name: Build linux-64
|
- name: Build linux-64
|
||||||
continue-on-error: true
|
continue-on-error: true
|
||||||
run: dotnet publish -p:PublishProfile=Linux64.pubxml
|
run: |
|
||||||
|
dotnet publish -p:PublishProfile=Linux64.pubxml
|
||||||
|
cp ../DataCollection/gamedata.json "Horse Isle Server/HorseIsleServer/bin/x64/Linux/net5.0/linux-x64/publish/"
|
||||||
|
cp ../DataCollection/HI1.MAP "Horse Isle Server/HorseIsleServer/bin/x64/Linux/net5.0/linux-x64/publish/"
|
||||||
|
|
||||||
- name: Build linux-arm
|
- name: Build linux-arm
|
||||||
continue-on-error: true
|
continue-on-error: true
|
||||||
run: dotnet publish -p:PublishProfile=LinuxARM.pubxml
|
run: |
|
||||||
|
dotnet publish -p:PublishProfile=LinuxARM.pubxml
|
||||||
|
cp ../DataCollection/gamedata.json "Horse Isle Server/HorseIsleServer/bin/ARM/Linux/net5.0/linux-arm/publish/"
|
||||||
|
cp ../DataCollection/HI1.MAP "Horse Isle Server/HorseIsleServer/bin/ARM/Linux/net5.0/linux-arm/publish/"
|
||||||
|
|
||||||
- name: Build linux-arm64
|
- name: Build linux-arm64
|
||||||
continue-on-error: true
|
continue-on-error: true
|
||||||
run: dotnet publish -p:PublishProfile=LinuxARM64.pubxml
|
run: |
|
||||||
|
dotnet publish -p:PublishProfile=LinuxARM64.pubxml
|
||||||
|
cp ../DataCollection/gamedata.json "Horse Isle Server/HorseIsleServer/bin/ARM64/Linux/net5.0/linux-arm64/publish/"
|
||||||
|
cp ../DataCollection/HI1.MAP "Horse Isle Server/HorseIsleServer/bin/ARM64/Linux/net5.0/linux-arm64/publish/"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -79,5 +94,5 @@ jobs:
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v2
|
||||||
with:
|
with:
|
||||||
name: win-32
|
name: win-32
|
||||||
path: Horse Isle Server/HorseIsleServer/bin/x86/Windows/net5.0/win-x86/publish\/
|
path: Horse Isle Server/HorseIsleServer/bin/x86/Windows/net5.0/win-x86/publish/
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue