-
-
Notifications
You must be signed in to change notification settings - Fork 124
61 lines (47 loc) · 1.73 KB
/
continuous-integration-workflow.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
name: Tidal Media Downloader
on: [push, pull_request]
jobs:
Build:
name: Build tidal-gui
runs-on: windows-latest
steps:
- name: Add msbuild to PATH
uses: microsoft/setup-msbuild@v1.1
- name: Checkout Tidal-Media-Downloader-PRO repo
uses: actions/checkout@v3
with:
fetch-depth: 0
path: Tidal-Media-Downloader-PRO
- name: Checkout TidalLib repo
uses: actions/checkout@v3
with:
repository: yaronzz/TidalLib
path: TidalLib
- name: Checkout AIGS repo
uses: actions/checkout@v3
with:
repository: AIGMix/AIGS
path: AIGS
- name: Intall AIGS dependencies
run: msbuild -t:restore -p:RestorePackagesConfig=true
working-directory: AIGS
- name: Intall TidalLib dependencies
run: msbuild -t:restore -p:RestorePackagesConfig=true
working-directory: TidalLib\TidalLib
- name: Intall TIDALDL-UI-PRO dependencies
run: msbuild -t:restore -p:RestorePackagesConfig=true
working-directory: Tidal-Media-Downloader-PRO\TIDALDL-UI-PRO
- name: Build AIGS artifact
run: msbuild AIGS.csproj -verbosity:diag -property:Configuration=Debug
working-directory: AIGS
- name: Build TidalLib artifact
run: msbuild TidalLib.csproj -verbosity:diag -property:Configuration=Debug
working-directory: TidalLib\TidalLib
- name: Build tidal-gui artifact
run: msbuild TIDALDL-UI.csproj -verbosity:diag -property:Configuration=Release
working-directory: Tidal-Media-Downloader-PRO\TIDALDL-UI-PRO
- name: Upload tidal-gui artifact
uses: actions/upload-artifact@v3
with:
name: tidal-gui
path: Tidal-Media-Downloader-PRO\TIDALDL-UI-PRO\bin\Release\tidal-gui.exe