Skip to content

Commit 7c199c8

Browse files
committed
[+] .net build action
1 parent 905d920 commit 7c199c8

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

.github/workflows/build.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,14 @@ jobs:
1414
- name: Check out code
1515
uses: actions/checkout@v3
1616

17+
- name: Setup .NET 8.x
18+
uses: actions/setup-dotnet@v4
19+
with:
20+
dotnet-version: '8.x'
21+
22+
- name: Build .NET Mod
23+
run: cd mod && dotnet build -c Release
24+
1725
- name: Set up JDK 21
1826
uses: actions/setup-java@v3
1927
with:
@@ -54,7 +62,9 @@ jobs:
5462
body: "CI Build Release"
5563
draft: false
5664
prerelease: false
57-
files: build/libs/worldlinkd.jar
65+
files: |
66+
build/libs/worldlinkd.jar
67+
mod/bin/Release/net472/WorldLink.dll
5868
token: ${{ secrets.GITHUB_TOKEN }}
5969

6070
- name: Upload EXE to Release

0 commit comments

Comments
 (0)