Skip to content

Commit

Permalink
[+] .net build action
Browse files Browse the repository at this point in the history
  • Loading branch information
hykilpikonna committed Mar 6, 2025
1 parent 905d920 commit 7c199c8
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,14 @@ jobs:
- name: Check out code
uses: actions/checkout@v3

- name: Setup .NET 8.x
uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.x'

- name: Build .NET Mod
run: cd mod && dotnet build -c Release

- name: Set up JDK 21
uses: actions/setup-java@v3
with:
Expand Down Expand Up @@ -54,7 +62,9 @@ jobs:
body: "CI Build Release"
draft: false
prerelease: false
files: build/libs/worldlinkd.jar
files: |
build/libs/worldlinkd.jar
mod/bin/Release/net472/WorldLink.dll
token: ${{ secrets.GITHUB_TOKEN }}

- name: Upload EXE to Release
Expand Down

0 comments on commit 7c199c8

Please sign in to comment.