-
Notifications
You must be signed in to change notification settings - Fork 3
89 lines (74 loc) · 2.99 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
name: Build Plugins
on: push
jobs:
build:
runs-on: windows-latest
steps:
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: '7.0.x'
- name: Clone Plugins
uses: actions/checkout@v2
- name: Build Plugins
run: dotnet publish -c Release src/Artemis.Plugins.Games.sln
- name: Upload Elite Dangerous
uses: actions/upload-artifact@v3
with:
name: Artemis.Plugins.Games.EliteDangerous
path: src/Artemis.Plugins.Games.EliteDangerous/bin/x64/Release/net7.0/publish
if-no-files-found: error
- name: Upload GTAV
uses: actions/upload-artifact@v3
with:
name: Artemis.Plugins.Games.GTAV.Module
path: src/Artemis.Plugins.Games.GTAV/Artemis.Plugins.Games.GTAV.Module/bin/x64/Release/net7.0/publish
if-no-files-found: error
- name: Upload League Of Legends
uses: actions/upload-artifact@v3
with:
name: Artemis.Plugins.Games.LeagueOfLegends.Module
path: src/Artemis.Plugins.Games.LeagueOfLegends/Artemis.Plugins.Games.LeagueOfLegends.Module/bin/x64/Release/net7.0/publish
if-no-files-found: error
- name: Upload Rocket League
uses: actions/upload-artifact@v3
with:
name: Artemis.Plugins.Games.RocketLeague
path: src/Artemis.Plugins.Games.RocketLeague/bin/x64/Release/net7.0/publish
if-no-files-found: error
- name: Upload TrackMania
uses: actions/upload-artifact@v3
with:
name: Artemis.Plugins.Games.TrackMania
path: src/Artemis.Plugins.Games.TrackMania/bin/x64/Release/net7.0/publish
if-no-files-found: error
- name: Upload Truck Simulator
uses: actions/upload-artifact@v3
with:
name: Artemis.Plugins.Games.TruckSimulator
path: src/Artemis.Plugins.Games.TruckSimulator/bin/x64/Release/net7.0/publish
if-no-files-found: error
- name: Upload Valheim
uses: actions/upload-artifact@v3
with:
name: Artemis.Plugins.Games.Valheim
path: src/Artemis.Plugins.Games.Valheim/Artemis.Plugins.Games.Valheim.Module/bin/x64/Release/net7.0/publish
if-no-files-found: error
- name: Upload Fallout 4
uses: actions/upload-artifact@v3
with:
name: Artemis.Plugins.Games.Fallout4
path: src/Artemis.Plugins.Games.Fallout4/bin/x64/Release/net7.0/publish
if-no-files-found: error
- name: Upload Dota 2
uses: actions/upload-artifact@v3
with:
name: Artemis.Plugins.Games.Dota2
path: src/Artemis.Plugins.Games.Dota2/bin/x64/Release/net7.0/publish
if-no-files-found: error
- name: Upload CSGO
uses: actions/upload-artifact@v3
with:
name: Artemis.Plugins.Games.CSGO
path: src/Artemis.Plugins.Games.CSGO/bin/x64/Release/net7.0/publish
if-no-files-found: error