File tree Expand file tree Collapse file tree 1 file changed +39
-0
lines changed Expand file tree Collapse file tree 1 file changed +39
-0
lines changed Original file line number Diff line number Diff line change 1+ name : .NET Core Desktop
2+
3+ on :
4+ push :
5+ branches : [ master ]
6+ pull_request :
7+ branches : [ master ]
8+
9+ jobs :
10+ build :
11+ runs-on : ubuntu-latest
12+ env :
13+ ROOT : ./src
14+ NUGET_AUTH_TOKEN : ${{secrets.token}}
15+
16+ steps :
17+ - name : Checkout
18+ uses : actions/checkout@v2
19+ with :
20+ fetch-depth : 0
21+
22+ - name : Install .NET Core
23+ uses : actions/setup-dotnet@v1
24+ with :
25+ dotnet-version : 5.0.x
26+
27+ - name : 📂 Files
28+ working-directory : ${{env.ROOT}}
29+ run : ls -R
30+
31+ - name : 🚀 Building CodeBase.Client
32+ working-directory : ${{env.ROOT}}/CodeBase.Client
33+ run : dotnet publish -c RELEASE -o out
34+
35+ - uses : actions/upload-artifact@v2
36+ with :
37+ name : builds
38+ path : ${{env.ROOT}}/**/out
39+ retention-days : 1
You can’t perform that action at this time.
0 commit comments