-
Notifications
You must be signed in to change notification settings - Fork 1
67 lines (60 loc) · 1.8 KB
/
dotnetcore.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
58
59
60
61
62
63
64
65
66
67
name: Build with .NET Core
on: [push]
jobs:
publishlinux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup .NET Core
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
6.x
8.x
- name: Publish with dotnet
run: dotnet publish ./src/AvaloniaApp/AvaloniaApp.csproj -r linux-x64 -c Release -f net6.0
- name: Archive publish artifacts
uses: actions/upload-artifact@v4
with:
name: AvaloniaApp_net60_linux-x64
path: src/AvaloniaApp/bin/Release/net6.0/linux-x64/publish
publishwin:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup .NET Core
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
6.x
8.x
- name: Publish with dotnet
run: dotnet publish ./src/AvaloniaApp/AvaloniaApp.csproj -r win-x64 -c Release -f net6.0
- name: Archive publish artifacts
uses: actions/upload-artifact@v4
with:
name: AvaloniaApp_net60_winx64
path: src/AvaloniaApp/bin/Release/net6.0/win-x64/publish
publishmac:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup .NET Core
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
6.x
8.x
- name: Publish with dotnet
run: dotnet publish ./src/AvaloniaApp/AvaloniaApp.csproj -r osx-x64 -c Release -f net6.0
- name: Archive publish artifacts
uses: actions/upload-artifact@v4
with:
name: AvaloniaApp_net60_osx
path: src/AvaloniaApp/bin/Release/net6.0/osx-x64/publish