From 10b2d703cb366bf006354e8425ffa0d054c2705a Mon Sep 17 00:00:00 2001 From: Bluzume <39113159+KuromeSan@users.noreply.github.com> Date: Fri, 29 Jan 2021 01:25:37 +1300 Subject: [PATCH 01/22] Update README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 9a681fa..4018de5 100755 --- a/README.md +++ b/README.md @@ -1,5 +1,7 @@ # HISP - Horse Isle Server Protocal. +![Auto Build](https://github.com/KuromeSan/HISP/workflows/dotnet/badge.svg) + This is a horse isle server that is massively still in development it has a few features implemented, none of the actural 'horse' part yet thou. From 90198f0699171bfa34f7961bc8187e5de79ed48f Mon Sep 17 00:00:00 2001 From: Bluzume <39113159+KuromeSan@users.noreply.github.com> Date: Fri, 29 Jan 2021 01:31:27 +1300 Subject: [PATCH 02/22] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4018de5..71ae9f8 100755 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # HISP - Horse Isle Server Protocal. -![Auto Build](https://github.com/KuromeSan/HISP/workflows/dotnet/badge.svg) +![.NET](https://github.com/KuromeSan/HISP/workflows/.NET/badge.svg This is a horse isle server that is massively still in development From e2149688703a5cdd55449e260c7a8a4a2093e905 Mon Sep 17 00:00:00 2001 From: Bluzume <39113159+KuromeSan@users.noreply.github.com> Date: Fri, 29 Jan 2021 01:31:44 +1300 Subject: [PATCH 03/22] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 71ae9f8..63ed7b4 100755 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # HISP - Horse Isle Server Protocal. -![.NET](https://github.com/KuromeSan/HISP/workflows/.NET/badge.svg +![NET](https://github.com/KuromeSan/HISP/workflows/.NET/badge.svg) This is a horse isle server that is massively still in development From a41427edb2985b5770bb3ce0338820ed6ecf7c1e Mon Sep 17 00:00:00 2001 From: Bluzume <39113159+KuromeSan@users.noreply.github.com> Date: Fri, 29 Jan 2021 01:34:34 +1300 Subject: [PATCH 04/22] make linux workflow --- .github/workflows/{dotnet.yml => linux.yml} | 50 +++++++-------------- 1 file changed, 16 insertions(+), 34 deletions(-) rename .github/workflows/{dotnet.yml => linux.yml} (53%) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/linux.yml similarity index 53% rename from .github/workflows/dotnet.yml rename to .github/workflows/linux.yml index 1e41fcb..989e24f 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/linux.yml @@ -1,4 +1,4 @@ -name: .NET +name: linux on: push: @@ -26,30 +26,26 @@ jobs: run: dotnet restore - - name: Build win-64 - continue-on-error: true - run: dotnet publish -p:PublishProfile=Win64.pubxml - - - name: Build win-32 - continue-on-error: true - run: dotnet publish -p:PublishProfile=Win32.pubxml - - - name: Build linux-64 - continue-on-error: true - run: dotnet publish -p:PublishProfile=Linux64.pubxml + continue-on-error: false + 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 "HorseIsleServer/bin/x64/Linux/net5.0/linux-x64/publish/" - name: Build linux-arm - continue-on-error: true - run: dotnet publish -p:PublishProfile=LinuxARM.pubxml + continue-on-error: false + 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 "HorseIsleServer/bin/ARM/Linux/net5.0/linux-arm/publish/" - name: Build linux-arm64 - continue-on-error: true - run: dotnet publish -p:PublishProfile=LinuxARM64.pubxml - - - - + continue-on-error: false + 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 "HorseIsleServer/bin/ARM64/Linux/net5.0/linux-arm64/publish/" - name: upload linux-64 uses: actions/upload-artifact@v2 with: @@ -67,17 +63,3 @@ jobs: with: name: linux-arm64 path: Horse Isle Server/HorseIsleServer/bin/ARM64/Linux/net5.0/linux-arm64/publish/ - - - - name: upload-win64 - uses: actions/upload-artifact@v2 - with: - name: win-64 - path: Horse Isle Server/HorseIsleServer/bin/Windows/net5.0/win-x64/publish/ - - - name: upload-win32 - uses: actions/upload-artifact@v2 - with: - name: win-32 - path: Horse Isle Server/HorseIsleServer/bin/x86/Windows/net5.0/win-x86/publish\/ - From 73b78d037776e29cf68e58e040f5bb30784d3243 Mon Sep 17 00:00:00 2001 From: Bluzume <39113159+KuromeSan@users.noreply.github.com> Date: Fri, 29 Jan 2021 01:34:59 +1300 Subject: [PATCH 05/22] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 63ed7b4..d78b487 100755 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # HISP - Horse Isle Server Protocal. -![NET](https://github.com/KuromeSan/HISP/workflows/.NET/badge.svg) +![Linux](https://github.com/KuromeSan/HISP/workflows/linux/badge.svg) This is a horse isle server that is massively still in development From 318bfde345f93f88927840173223868debd9c70b Mon Sep 17 00:00:00 2001 From: Bluzume <39113159+KuromeSan@users.noreply.github.com> Date: Fri, 29 Jan 2021 01:38:55 +1300 Subject: [PATCH 06/22] Create windows.yml --- .github/workflows/windows.yml | 53 +++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 .github/workflows/windows.yml diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml new file mode 100644 index 0000000..b72e63b --- /dev/null +++ b/.github/workflows/windows.yml @@ -0,0 +1,53 @@ +name: windows + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] +defaults: + run: + working-directory: ./Horse Isle Server + +jobs: + build: + + runs-on: windows-latest + + steps: + - uses: actions/checkout@v2 + + - name: Setup .NET + uses: actions/setup-dotnet@v1 + with: + dotnet-version: 5.0.x + + - name: Restore dependencies + run: dotnet restore + + + - name: Build win-x64 + continue-on-error: false + run: | + dotnet publish -p:PublishProfile=Win64.pubxml + copy ../DataCollection/gamedata.json "Horse Isle Server/HorseIsleServer/bin/x64/Linux/net5.0/linux-x64/publish/" + copy ../DataCollection/HI1.MAP "HorseIsleServer/bin/x64/Linux/net5.0/linux-x64/publish/" + + - name: Build win-x86 + continue-on-error: false + run: | + dotnet publish -p:PublishProfile=Win32.pubxml + copy ../DataCollection/gamedata.json "Horse Isle Server/HorseIsleServer/bin/x64/Linux/net5.0/linux-x64/publish/" + copy ../DataCollection/HI1.MAP "HorseIsleServer/bin/x64/Linux/net5.0/linux-x64/publish/" + + - name: upload win-x64 + uses: actions/upload-artifact@v2 + with: + name: win-x64 + path: Horse Isle Server/HorseIsleServer/bin/x64/windows/net5.0/windows-x64/publish/ + + - name: upload win-x86 + uses: actions/upload-artifact@v2 + with: + name: win-x86 + path: Horse Isle Server/HorseIsleServer/bin/x86/windows/net5.0/windows-x86/publish/ From 6d931cf81ef7aaa08b157f92a6d41dd9d5789c27 Mon Sep 17 00:00:00 2001 From: Bluzume <39113159+KuromeSan@users.noreply.github.com> Date: Fri, 29 Jan 2021 01:40:40 +1300 Subject: [PATCH 07/22] Update linux.yml --- .github/workflows/linux.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 989e24f..efb0ac3 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -30,22 +30,22 @@ jobs: continue-on-error: false 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 "HorseIsleServer/bin/x64/Linux/net5.0/linux-x64/publish/" + cp ../DataCollection/gamedata.json "Horse Isle Server/HorseIsleServer/bin/x64/Linux/net5.0/linux-x64/publish/gamedata.json" + cp ../DataCollection/HI1.MAP "HorseIsleServer/bin/x64/Linux/net5.0/linux-x64/publish/HI1.MAP" - name: Build linux-arm continue-on-error: false 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 "HorseIsleServer/bin/ARM/Linux/net5.0/linux-arm/publish/" + cp ../DataCollection/gamedata.json "Horse Isle Server/HorseIsleServer/bin/ARM/Linux/net5.0/linux-arm/publish/gamedata.json" + cp ../DataCollection/HI1.MAP "HorseIsleServer/bin/ARM/Linux/net5.0/linux-arm/publish/HI1.MAP" - name: Build linux-arm64 continue-on-error: false 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 "HorseIsleServer/bin/ARM64/Linux/net5.0/linux-arm64/publish/" + cp ../DataCollection/gamedata.json "Horse Isle Server/HorseIsleServer/bin/ARM64/Linux/net5.0/linux-arm64/publish/gamedata.json" + cp ../DataCollection/HI1.MAP "HorseIsleServer/bin/ARM64/Linux/net5.0/linux-arm64/publish/HI1.MAP" - name: upload linux-64 uses: actions/upload-artifact@v2 with: From ed737adea6a39905214ffb218c30d0491b849aac Mon Sep 17 00:00:00 2001 From: Bluzume <39113159+KuromeSan@users.noreply.github.com> Date: Fri, 29 Jan 2021 01:42:31 +1300 Subject: [PATCH 08/22] Update windows.yml --- .github/workflows/windows.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index b72e63b..9ac5d39 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -30,15 +30,15 @@ jobs: continue-on-error: false run: | dotnet publish -p:PublishProfile=Win64.pubxml - copy ../DataCollection/gamedata.json "Horse Isle Server/HorseIsleServer/bin/x64/Linux/net5.0/linux-x64/publish/" - copy ../DataCollection/HI1.MAP "HorseIsleServer/bin/x64/Linux/net5.0/linux-x64/publish/" + copy ../DataCollection/gamedata.json "Horse Isle Server/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" - name: Build win-x86 continue-on-error: false run: | dotnet publish -p:PublishProfile=Win32.pubxml - copy ../DataCollection/gamedata.json "Horse Isle Server/HorseIsleServer/bin/x64/Linux/net5.0/linux-x64/publish/" - copy ../DataCollection/HI1.MAP "HorseIsleServer/bin/x64/Linux/net5.0/linux-x64/publish/" + copy ../DataCollection/gamedata.json "Horse Isle Server/HorseIsleServer/bin/x86/Windows/net5.0/win-x86/publish/amedata.json" + copy ../DataCollection/HI1.MAP "HorseIsleServer/bin/x86/Windows/net5.0/win-x86/publish/HI1.MAP" - name: upload win-x64 uses: actions/upload-artifact@v2 From 4a5b2a07db823808302ec1a2ccd55981ec15351b Mon Sep 17 00:00:00 2001 From: Bluzume <39113159+KuromeSan@users.noreply.github.com> Date: Fri, 29 Jan 2021 01:46:17 +1300 Subject: [PATCH 09/22] Update linux.yml --- .github/workflows/linux.yml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index efb0ac3..4309982 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -30,22 +30,19 @@ jobs: continue-on-error: false run: | dotnet publish -p:PublishProfile=Linux64.pubxml - cp ../DataCollection/gamedata.json "Horse Isle Server/HorseIsleServer/bin/x64/Linux/net5.0/linux-x64/publish/gamedata.json" - cp ../DataCollection/HI1.MAP "HorseIsleServer/bin/x64/Linux/net5.0/linux-x64/publish/HI1.MAP" + cp ../DataCollection/* "HorseIsleServer/bin/x64/Linux/net5.0/linux-x64/publish/" - name: Build linux-arm continue-on-error: false run: | dotnet publish -p:PublishProfile=LinuxARM.pubxml - cp ../DataCollection/gamedata.json "Horse Isle Server/HorseIsleServer/bin/ARM/Linux/net5.0/linux-arm/publish/gamedata.json" - cp ../DataCollection/HI1.MAP "HorseIsleServer/bin/ARM/Linux/net5.0/linux-arm/publish/HI1.MAP" + cp ../DataCollection/* "HorseIsleServer/bin/arm/Linux/net5.0/linux-arm/publish/" - name: Build linux-arm64 continue-on-error: false run: | dotnet publish -p:PublishProfile=LinuxARM64.pubxml - cp ../DataCollection/gamedata.json "Horse Isle Server/HorseIsleServer/bin/ARM64/Linux/net5.0/linux-arm64/publish/gamedata.json" - cp ../DataCollection/HI1.MAP "HorseIsleServer/bin/ARM64/Linux/net5.0/linux-arm64/publish/HI1.MAP" + cp ../DataCollection/* "HorseIsleServer/bin/arm64/Linux/net5.0/linux-arm64/publish/" - name: upload linux-64 uses: actions/upload-artifact@v2 with: From cc259bc27fdfe15864a066863a57d96d3de97549 Mon Sep 17 00:00:00 2001 From: Bluzume <39113159+KuromeSan@users.noreply.github.com> Date: Fri, 29 Jan 2021 01:46:44 +1300 Subject: [PATCH 10/22] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index d78b487..6c6021f 100755 --- a/README.md +++ b/README.md @@ -1,6 +1,7 @@ # HISP - Horse Isle Server Protocal. ![Linux](https://github.com/KuromeSan/HISP/workflows/linux/badge.svg) +![Windows](https://github.com/KuromeSan/HISP/workflows/windows/badge.svg) This is a horse isle server that is massively still in development From d97b2ffaf76fd67b28abced88973491177650826 Mon Sep 17 00:00:00 2001 From: Bluzume <39113159+KuromeSan@users.noreply.github.com> Date: Fri, 29 Jan 2021 01:52:25 +1300 Subject: [PATCH 11/22] Update windows.yml --- .github/workflows/windows.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 9ac5d39..27d9ed2 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -30,14 +30,14 @@ jobs: continue-on-error: false run: | dotnet publish -p:PublishProfile=Win64.pubxml - copy ../DataCollection/gamedata.json "Horse Isle Server/HorseIsleServer/bin/x64/Windows/net5.0/win-x64/publish/gamedata.json" + 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" - name: Build win-x86 continue-on-error: false run: | dotnet publish -p:PublishProfile=Win32.pubxml - copy ../DataCollection/gamedata.json "Horse Isle Server/HorseIsleServer/bin/x86/Windows/net5.0/win-x86/publish/amedata.json" + 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" - name: upload win-x64 From 696c14afa193e334bc2d897645796a1732dd03f8 Mon Sep 17 00:00:00 2001 From: Bluzume <39113159+KuromeSan@users.noreply.github.com> Date: Fri, 29 Jan 2021 01:53:47 +1300 Subject: [PATCH 12/22] Update linux.yml --- .github/workflows/linux.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 4309982..0d3409d 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -30,19 +30,23 @@ jobs: continue-on-error: false run: | dotnet publish -p:PublishProfile=Linux64.pubxml - cp ../DataCollection/* "HorseIsleServer/bin/x64/Linux/net5.0/linux-x64/publish/" + cp ../DataCollection/*.json "HorseIsleServer/bin/x64/Linux/net5.0/linux-x64/publish/ + cp ../DataCollection/*.MAP "HorseIsleServer/bin/x64/Linux/net5.0/linux-x64/publish/" - name: Build linux-arm continue-on-error: false run: | dotnet publish -p:PublishProfile=LinuxARM.pubxml - cp ../DataCollection/* "HorseIsleServer/bin/arm/Linux/net5.0/linux-arm/publish/" + cp ../DataCollection/*.json "HorseIsleServer/bin/arm/Linux/net5.0/linux-arm/publish/ + cp ../DataCollection/*.MAP "HorseIsleServer/bin/arm/Linux/net5.0/linux-arm/publish/" - name: Build linux-arm64 continue-on-error: false run: | dotnet publish -p:PublishProfile=LinuxARM64.pubxml - cp ../DataCollection/* "HorseIsleServer/bin/arm64/Linux/net5.0/linux-arm64/publish/" + cp ../DataCollection/*.json "HorseIsleServer/bin/arm64/Linux/net5.0/linux-arm64/publish/ + cp ../DataCollection/*.MAP "HorseIsleServer/bin/arm64/Linux/net5.0/linux-arm64/publish/" + - name: upload linux-64 uses: actions/upload-artifact@v2 with: From e8e6b6477fa13db2c32477b9ce08cb48ce5745d6 Mon Sep 17 00:00:00 2001 From: Bluzume <39113159+KuromeSan@users.noreply.github.com> Date: Fri, 29 Jan 2021 01:54:39 +1300 Subject: [PATCH 13/22] Update linux.yml --- .github/workflows/linux.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 0d3409d..3997730 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -30,21 +30,21 @@ jobs: continue-on-error: false run: | dotnet publish -p:PublishProfile=Linux64.pubxml - cp ../DataCollection/*.json "HorseIsleServer/bin/x64/Linux/net5.0/linux-x64/publish/ + cp ../DataCollection/*.json "HorseIsleServer/bin/x64/Linux/net5.0/linux-x64/publish/" cp ../DataCollection/*.MAP "HorseIsleServer/bin/x64/Linux/net5.0/linux-x64/publish/" - name: Build linux-arm continue-on-error: false run: | dotnet publish -p:PublishProfile=LinuxARM.pubxml - cp ../DataCollection/*.json "HorseIsleServer/bin/arm/Linux/net5.0/linux-arm/publish/ + cp ../DataCollection/*.json "HorseIsleServer/bin/arm/Linux/net5.0/linux-arm/publish/" cp ../DataCollection/*.MAP "HorseIsleServer/bin/arm/Linux/net5.0/linux-arm/publish/" - name: Build linux-arm64 continue-on-error: false run: | dotnet publish -p:PublishProfile=LinuxARM64.pubxml - cp ../DataCollection/*.json "HorseIsleServer/bin/arm64/Linux/net5.0/linux-arm64/publish/ + cp ../DataCollection/*.json "HorseIsleServer/bin/arm64/Linux/net5.0/linux-arm64/publish/" cp ../DataCollection/*.MAP "HorseIsleServer/bin/arm64/Linux/net5.0/linux-arm64/publish/" - name: upload linux-64 From 0025c2ca14d5df134bdb39ec3ad97e382d576931 Mon Sep 17 00:00:00 2001 From: Bluzume <39113159+KuromeSan@users.noreply.github.com> Date: Fri, 29 Jan 2021 01:58:54 +1300 Subject: [PATCH 14/22] Update LinuxARM64.pubxml --- .../Properties/PublishProfiles/LinuxARM64.pubxml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Horse Isle Server/HorseIsleServer/Properties/PublishProfiles/LinuxARM64.pubxml b/Horse Isle Server/HorseIsleServer/Properties/PublishProfiles/LinuxARM64.pubxml index 97f6bce..1bedc71 100644 --- a/Horse Isle Server/HorseIsleServer/Properties/PublishProfiles/LinuxARM64.pubxml +++ b/Horse Isle Server/HorseIsleServer/Properties/PublishProfiles/LinuxARM64.pubxml @@ -6,7 +6,7 @@ https://go.microsoft.com/fwlink/?LinkID=208121. Linux ARM64 - True + bin\ARM64\Linux\net5.0\linux-arm64\publish\ FileSystem net5.0 linux-arm64 @@ -15,4 +15,4 @@ https://go.microsoft.com/fwlink/?LinkID=208121. True True - \ No newline at end of file + From cb16968095d99c8e3a8abc5c7d466e846bd16eeb Mon Sep 17 00:00:00 2001 From: Bluzume <39113159+KuromeSan@users.noreply.github.com> Date: Fri, 29 Jan 2021 01:59:42 +1300 Subject: [PATCH 15/22] Update linux.yml --- .github/workflows/linux.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 3997730..65c358f 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -37,15 +37,15 @@ jobs: continue-on-error: false run: | dotnet publish -p:PublishProfile=LinuxARM.pubxml - cp ../DataCollection/*.json "HorseIsleServer/bin/arm/Linux/net5.0/linux-arm/publish/" - cp ../DataCollection/*.MAP "HorseIsleServer/bin/arm/Linux/net5.0/linux-arm/publish/" + cp ../DataCollection/*.json "HorseIsleServer/bin/ARM/Linux/net5.0/linux-arm/publish/" + cp ../DataCollection/*.MAP "HorseIsleServer/bin/ARM/Linux/net5.0/linux-arm/publish/" - name: Build linux-arm64 continue-on-error: false run: | dotnet publish -p:PublishProfile=LinuxARM64.pubxml - cp ../DataCollection/*.json "HorseIsleServer/bin/arm64/Linux/net5.0/linux-arm64/publish/" - cp ../DataCollection/*.MAP "HorseIsleServer/bin/arm64/Linux/net5.0/linux-arm64/publish/" + cp ../DataCollection/*.json "HorseIsleServer/bin/ARM64/Linux/net5.0/linux-arm64/publish/" + cp ../DataCollection/*.MAP "HorseIsleServer/bin/ARM64/Linux/net5.0/linux-arm64/publish/" - name: upload linux-64 uses: actions/upload-artifact@v2 From 15aa3b1055aaae1b59e11079a4adcbe44e18f0c7 Mon Sep 17 00:00:00 2001 From: Bluzume <39113159+KuromeSan@users.noreply.github.com> Date: Fri, 29 Jan 2021 02:07:46 +1300 Subject: [PATCH 16/22] Update windows.yml --- .github/workflows/windows.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 27d9ed2..038d396 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -44,10 +44,10 @@ jobs: uses: actions/upload-artifact@v2 with: name: win-x64 - path: Horse Isle Server/HorseIsleServer/bin/x64/windows/net5.0/windows-x64/publish/ + path: HorseIsleServer/bin/x64/windows/net5.0/windows-x64/publish/ - name: upload win-x86 uses: actions/upload-artifact@v2 with: name: win-x86 - path: Horse Isle Server/HorseIsleServer/bin/x86/windows/net5.0/windows-x86/publish/ + path: HorseIsleServer/bin/x86/windows/net5.0/windows-x86/publish/ From 444b8678f9a4366d89b60e8b20cc1af633c37d96 Mon Sep 17 00:00:00 2001 From: Bluzume <39113159+KuromeSan@users.noreply.github.com> Date: Fri, 29 Jan 2021 02:08:22 +1300 Subject: [PATCH 17/22] Update linux.yml --- .github/workflows/linux.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 65c358f..2b171a6 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -51,16 +51,16 @@ jobs: uses: actions/upload-artifact@v2 with: name: linux-x64 - path: Horse Isle Server/HorseIsleServer/bin/x64/Linux/net5.0/linux-x64/publish/ + path: HorseIsleServer/bin/x64/Linux/net5.0/linux-x64/publish/ - name: upload linux-arm uses: actions/upload-artifact@v2 with: name: linux-arm - path: Horse Isle Server/HorseIsleServer/bin/ARM/Linux/net5.0/linux-arm/publish/ + path: HorseIsleServer/bin/ARM/Linux/net5.0/linux-arm/publish/ - name: upload linux-arm64 uses: actions/upload-artifact@v2 with: name: linux-arm64 - path: Horse Isle Server/HorseIsleServer/bin/ARM64/Linux/net5.0/linux-arm64/publish/ + path: HorseIsleServer/bin/ARM64/Linux/net5.0/linux-arm64/publish/ From ded752b3bebc407ef087619eafff3e7a4d7bedfb Mon Sep 17 00:00:00 2001 From: Bluzume <39113159+KuromeSan@users.noreply.github.com> Date: Fri, 29 Jan 2021 02:13:07 +1300 Subject: [PATCH 18/22] Update windows.yml --- .github/workflows/windows.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 038d396..0d6f522 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -44,10 +44,10 @@ jobs: uses: actions/upload-artifact@v2 with: name: win-x64 - path: HorseIsleServer/bin/x64/windows/net5.0/windows-x64/publish/ + path: HorseIsleServer/bin/x64/Windows/net5.0/win-x64/publish/ - name: upload win-x86 uses: actions/upload-artifact@v2 with: name: win-x86 - path: HorseIsleServer/bin/x86/windows/net5.0/windows-x86/publish/ + path: HorseIsleServer/bin/x86/Windows/net5.0/win-x86/publish/ From 39258437beb47608c96867641c747fd64cd11340 Mon Sep 17 00:00:00 2001 From: olebeck <31539311+olebeck@users.noreply.github.com> Date: Thu, 28 Jan 2021 14:14:03 +0100 Subject: [PATCH 19/22] Update README.md --- README.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 6c6021f..ab8ead9 100755 --- a/README.md +++ b/README.md @@ -1,8 +1,7 @@ # HISP - Horse Isle Server Protocal. -![Linux](https://github.com/KuromeSan/HISP/workflows/linux/badge.svg) -![Windows](https://github.com/KuromeSan/HISP/workflows/windows/badge.svg) - +[![Linux](https://github.com/KuromeSan/HISP/workflows/linux/badge.svg)](https://github.com/KuromeSan/HISP/workflows/linux/) +[![Windows](https://github.com/KuromeSan/HISP/workflows/windows/badge.svg)](https://github.com/KuromeSan/HISP/workflows/windows/) This is a horse isle server that is massively still in development it has a few features implemented, none of the actural 'horse' part yet thou. From fd7a20303d357a19d404eb9198f9e2dab7ef1796 Mon Sep 17 00:00:00 2001 From: Bluzume <39113159+KuromeSan@users.noreply.github.com> Date: Fri, 29 Jan 2021 02:20:34 +1300 Subject: [PATCH 20/22] Update linux.yml --- .github/workflows/linux.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 2b171a6..65c358f 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -51,16 +51,16 @@ jobs: uses: actions/upload-artifact@v2 with: name: linux-x64 - path: HorseIsleServer/bin/x64/Linux/net5.0/linux-x64/publish/ + path: Horse Isle Server/HorseIsleServer/bin/x64/Linux/net5.0/linux-x64/publish/ - name: upload linux-arm uses: actions/upload-artifact@v2 with: name: linux-arm - path: HorseIsleServer/bin/ARM/Linux/net5.0/linux-arm/publish/ + path: Horse Isle Server/HorseIsleServer/bin/ARM/Linux/net5.0/linux-arm/publish/ - name: upload linux-arm64 uses: actions/upload-artifact@v2 with: name: linux-arm64 - path: HorseIsleServer/bin/ARM64/Linux/net5.0/linux-arm64/publish/ + path: Horse Isle Server/HorseIsleServer/bin/ARM64/Linux/net5.0/linux-arm64/publish/ From e6c3962501b697c66ebdaa764075951a84085f56 Mon Sep 17 00:00:00 2001 From: Bluzume <39113159+KuromeSan@users.noreply.github.com> Date: Fri, 29 Jan 2021 02:21:36 +1300 Subject: [PATCH 21/22] Update windows.yml --- .github/workflows/windows.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 0d6f522..d870e7d 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -44,10 +44,10 @@ jobs: uses: actions/upload-artifact@v2 with: name: win-x64 - path: HorseIsleServer/bin/x64/Windows/net5.0/win-x64/publish/ + path: Horse Isle Server\HorseIsleServer\bin/x64\Windows\net5.0\win-x64\publish\ - name: upload win-x86 uses: actions/upload-artifact@v2 with: name: win-x86 - path: HorseIsleServer/bin/x86/Windows/net5.0/win-x86/publish/ + path: Horse Isle Server\HorseIsleServer\bin\x86\Windows\net5.0\win-x86\publish\ From dd61f8120524ce831a344b0c153a52862cc1fe43 Mon Sep 17 00:00:00 2001 From: Bluzume <39113159+KuromeSan@users.noreply.github.com> Date: Fri, 29 Jan 2021 02:39:58 +1300 Subject: [PATCH 22/22] Update README.md --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index ab8ead9..d797671 100755 --- a/README.md +++ b/README.md @@ -1,7 +1,8 @@ # HISP - Horse Isle Server Protocal. -[![Linux](https://github.com/KuromeSan/HISP/workflows/linux/badge.svg)](https://github.com/KuromeSan/HISP/workflows/linux/) -[![Windows](https://github.com/KuromeSan/HISP/workflows/windows/badge.svg)](https://github.com/KuromeSan/HISP/workflows/windows/) +[![Linux](https://github.com/KuromeSan/HISP/workflows/linux/badge.svg)](https://github.com/KuromeSan/HISP/actions?query=workflow%3Alinux) +[![Windows](https://github.com/KuromeSan/HISP/workflows/windows/badge.svg)](https://github.com/KuromeSan/HISP/actions?query=workflow%3Awindows) + This is a horse isle server that is massively still in development it has a few features implemented, none of the actural 'horse' part yet thou.