-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update submodules & fix
DeleteFileService
& impl workflow (#2)
- Loading branch information
Showing
4 changed files
with
33 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
name: Lagrange.Kritor Build | ||
|
||
on: | ||
push: | ||
branches: [ "master" ] | ||
pull_request: | ||
branches: [ "master" ] | ||
|
||
jobs: | ||
build: | ||
runs-on: windows-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
submodules: 'true' | ||
- name: Setup .NET | ||
uses: actions/setup-dotnet@v4 | ||
with: | ||
dotnet-version: 8.0.x | ||
- name: Restore dependencies | ||
run: dotnet restore | ||
- name: Build Lagrange.Kritor .NET 8.0 | ||
run: dotnet publish Lagrange.Kritor/Lagrange.Kritor.csproj --no-self-contained -p:PublishSingleFile=true -p:IncludeNativeLibrariesForSelfExtract=true -p:DebugType=none -p:RuntimeIdentifier=win-x64 --framework net8.0 | ||
- name: Upload binary files win-x64 for .NET 8.0 | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: Lagrange.Kritor_win-x64_net8.0_NoSelfContained | ||
path: Lagrange.Kritor/bin/Release/net8.0/win-x64/publish |
Submodule kritor
updated
14 files
+7 −6 | docs/event/msg.md | |
+1 −1 | docs/event/notice.md | |
+1 −1 | docs/event/request.md | |
+13 −12 | docs/request/request.md | |
+8 −6 | protos/auth/authentication.proto | |
+7 −6 | protos/common/contact.proto | |
+2 −2 | protos/common/message_data.proto | |
+34 −31 | protos/common/message_element.proto | |
+6 −5 | protos/common/request.proto | |
+5 −4 | protos/event/event.proto | |
+1 −1 | protos/event/event_notice.proto | |
+1 −1 | protos/event/event_request.proto | |
+10 −7 | protos/event/notice_data.proto | |
+5 −4 | protos/group/group_data.proto |
Submodule Lagrange.Core
updated
101 files
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters