mirror of
https://github.com/islehorse/HISP.git
synced 2025-04-06 21:25:42 +12:00
Update build.yml
This commit is contained in:
parent
0394d5fb9f
commit
f294a83368
1 changed files with 20 additions and 3 deletions
23
.github/workflows/build.yml
vendored
23
.github/workflows/build.yml
vendored
|
@ -23,7 +23,11 @@ jobs:
|
||||||
with:
|
with:
|
||||||
dotnet-version: 7.0.x
|
dotnet-version: 7.0.x
|
||||||
include-prerelease: true
|
include-prerelease: true
|
||||||
|
- name: Install utils
|
||||||
|
run: |
|
||||||
|
apt update
|
||||||
|
apt install -y dos2unix
|
||||||
|
apt install -y tree
|
||||||
- name: Restore dependencies
|
- name: Restore dependencies
|
||||||
run: |
|
run: |
|
||||||
dotnet restore LibHISP
|
dotnet restore LibHISP
|
||||||
|
@ -35,6 +39,7 @@ jobs:
|
||||||
dotnet add HISPd package Microsoft.DotNet.ILCompiler --prerelease
|
dotnet add HISPd package Microsoft.DotNet.ILCompiler --prerelease
|
||||||
cd HISPd
|
cd HISPd
|
||||||
dotnet publish -r linux-x64 -c Linux --self-contained
|
dotnet publish -r linux-x64 -c Linux --self-contained
|
||||||
|
tree
|
||||||
mkdir -p "HISPd/bin/x64/Linux/net7.0/linux-x64/native/gamedata"
|
mkdir -p "HISPd/bin/x64/Linux/net7.0/linux-x64/native/gamedata"
|
||||||
cp -r "../../HorseIsleData/gamedata" "HISPd/bin/x64/Linux/net7.0/linux-x64/native"
|
cp -r "../../HorseIsleData/gamedata" "HISPd/bin/x64/Linux/net7.0/linux-x64/native"
|
||||||
cp "../../HorseIsleData/HI1.MAP" "HISPd/bin/x64/Linux/net7.0/linux-x64/native/HI1.MAP"
|
cp "../../HorseIsleData/HI1.MAP" "HISPd/bin/x64/Linux/net7.0/linux-x64/native/HI1.MAP"
|
||||||
|
@ -271,7 +276,19 @@ jobs:
|
||||||
path: HorseIsleServer/HISPd/bin/arm64/MacOS/net7.0/osx-arm64/publish/
|
path: HorseIsleServer/HISPd/bin/arm64/MacOS/net7.0/osx-arm64/publish/
|
||||||
|
|
||||||
|
|
||||||
# UPLOAD WEB
|
|
||||||
|
|
||||||
|
build-web:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
|
||||||
|
- name: Git Submodule update
|
||||||
|
run: git submodule update --init --recursive
|
||||||
|
|
||||||
|
# UPLOAD WEB
|
||||||
|
|
||||||
- name: Upload Website (master)
|
- name: Upload Website (master)
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v2
|
||||||
|
@ -283,4 +300,4 @@ jobs:
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v2
|
||||||
with:
|
with:
|
||||||
name: HISP-Web-Game
|
name: HISP-Web-Game
|
||||||
path: HorseIsleWeb/game-site
|
path: HorseIsleWeb/game-site
|
Loading…
Add table
Reference in a new issue