File tree Expand file tree Collapse file tree 1 file changed +43
-0
lines changed
Expand file tree Collapse file tree 1 file changed +43
-0
lines changed Original file line number Diff line number Diff line change 1+ name : CI
2+
3+ on :
4+ push :
5+ branches : [ main ]
6+ pull_request : ~
7+ workflow_dispatch : ~
8+
9+ jobs :
10+ CI :
11+ runs-on : windows-latest
12+
13+ steps :
14+ - name : Checkout
15+ uses : actions/checkout@v4
16+ with :
17+ fetch-depth : 0
18+
19+ - name : Build
20+ run : dotnet publish MystIVAssetExplorer.Desktop -c Release -o artifacts/Bin /bl:artifacts/Logs/publish.binlog
21+
22+ - name : Upload bin artifact
23+ if : always()
24+ uses : actions/upload-artifact@v4
25+ with :
26+ name : Bin
27+ path : |
28+ artifacts/Bin/**/*
29+ !artifacts/Bin/**/*.pdb
30+
31+ - name : Upload symbols artifact
32+ if : always()
33+ uses : actions/upload-artifact@v4
34+ with :
35+ name : Symbols
36+ path : artifacts/Bin/**/*.pdb
37+
38+ - name : Upload logs artifact
39+ if : always()
40+ uses : actions/upload-artifact@v4
41+ with :
42+ name : Logs
43+ path : artifacts/Logs
You can’t perform that action at this time.
0 commit comments