add copying of www folder

This commit is contained in:
Bluzume 2021-04-05 12:14:14 +12:00 committed by GitHub
parent 5fc313657d
commit d4c5cfecd8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -32,14 +32,18 @@ jobs:
dotnet publish -p:PublishProfile=Win64.pubxml
copy ../DataCollection/gamedata.json "HorseIsleServer/bin/x64/Windows/net5.0/win-x64/publish/gamedata.json"
copy ../DataCollection/HI1.MAP "HorseIsleServer/bin/x64/Windows/net5.0/win-x64/publish/HI1.MAP"
mkdir "HorseIsleServer/bin/x86/Windows/net5.0/win-x86/publish/www"
xcopy /E ../WebInterface "HorseIsleServer/bin/x86/Windows/net5.0/win-x86/publish/www"
- name: Build win-x86
continue-on-error: false
run: |
dotnet publish -p:PublishProfile=Win32.pubxml
copy ../DataCollection/gamedata.json "HorseIsleServer/bin/x86/Windows/net5.0/win-x86/publish/gamedata.json"
copy ../DataCollection/HI1.MAP "HorseIsleServer/bin/x86/Windows/net5.0/win-x86/publish/HI1.MAP"
mkdir "HorseIsleServer/bin/x86/Windows/net5.0/win-x86/publish/www"
xcopy /E ../WebInterface "HorseIsleServer/bin/x86/Windows/net5.0/win-x86/publish/www"
- name: upload win-x64
uses: actions/upload-artifact@v2
with: