-
Notifications
You must be signed in to change notification settings - Fork 0
46 lines (42 loc) · 1.06 KB
/
dotnet.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
name: .NET
on:
push:
tags:
- "*"
jobs:
release-console:
name: Release Console
uses: ./.github/workflows/publish.yml
strategy:
matrix:
targets: [linux-x64, win-x64]
with:
project_name: Console
project_path: TwitchDropsBot.Console/TwitchDropsBot.Console.csproj
framework: net8.0
os: ubuntu-latest
target: ${{ matrix.targets }}
release-winforms:
name: Release WinForms
uses: ./.github/workflows/publish.yml
strategy:
matrix:
targets: [win-x64]
with:
project_name: WinForms
project_path: TwitchDropsBot.WinForms/TwitchDropsBot.WinForms.csproj
framework: net8.0-windows
os: windows-latest
target: ${{ matrix.targets }}
release-gtk:
name: Release GTK
uses: ./.github/workflows/publish.yml
strategy:
matrix:
targets: [linux-x64, win-x64]
with:
project_name: GTK
project_path: TwitchDropsBot.GTK/TwitchDropsBot.GTK.csproj
framework: net8.0
os: ubuntu-latest
target: ${{ matrix.targets }}