-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.json
More file actions
32 lines (32 loc) · 811 Bytes
/
build.json
File metadata and controls
32 lines (32 loc) · 811 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"Id": "daemon",
"Repository": "https://github.com/Moonlight-Panel/MoonlightDaemon",
"Branch": "main",
"Packages": [
"dotnet-sdk-7.0"
],
"Artifacts": [
{
"Name": "MoonlightDaemon_x64",
"Path": "MoonlightDaemon/bin/Release/net7.0/linux-x64/publish/MoonlightDaemon"
},
{
"Name": "MoonlightDaemon_arm64",
"Path": "MoonlightDaemon/bin/Release/net7.0/linux-arm64/publish/MoonlightDaemon"
}
],
"Steps": [
{
"Name": "Compile for x64",
"Commands": [
"dotnet publish -c Release -r linux-x64 --self-contained true /p:PublishSingleFile=true"
]
},
{
"Name": "Compile for arm64",
"Commands": [
"dotnet publish -c Release -r linux-arm64 --self-contained true /p:PublishSingleFile=true"
]
}
]
}