-
Notifications
You must be signed in to change notification settings - Fork 2
57 lines (47 loc) · 1.44 KB
/
build.yml
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
name: Build
on:
push:
branches: [master]
pull_request:
jobs:
build:
name: build
runs-on: ubuntu-latest
steps:
- name: Fetch Sources
uses: actions/checkout@v4
with:
fetch-depth: 0
filter: tree:0
- name: Setup .NET Env
uses: actions/setup-dotnet@v4
with:
dotnet-version: "8.0.203"
- name: Restore Solution
run: |
dotnet restore
dotnet tool restore
- name: Pack Solution
run: |
dotnet pack --configuration Release
- name: Upload Thunderstore Artifact
uses: actions/upload-artifact@v4
with:
name: thunderstore-build
path: MyceliumNetworkingForCW/dist/*.zip
- name: Upload NuPkg Artifact
uses: actions/upload-artifact@v4
with:
name: nupkg-build
path: MyceliumNetworkingForCW/bin/Release/*.nupkg
- name: Build Debug
run: |
dotnet build --configuration Debug
- name: Rename Debug Build
run: |
mv "./MyceliumNetworkingForCW/bin/Debug/netstandard2.1/MyceliumNetworkingForCW.dll" "./MyceliumNetworkingForCW/bin/Debug/netstandard2.1/MyceliumNetworkingForCW-Debug.dll"
- name: Upload Debug Dll
uses: actions/upload-artifact@v4
with:
name: debug-build
path: MyceliumNetworkingForCW/bin/Debug/netstandard2.1/MyceliumNetworkingForCW-Debug.dll