-
Notifications
You must be signed in to change notification settings - Fork 0
162 lines (109 loc) · 5.5 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
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
name: .NET
on:
push:
branches: [ main, dev, feature/*, fix/*, release/* ]
pull_request:
branches: [ main ]
release:
types: [ published ]
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: |
6.0.x
8.0.x
# Create Local NuGet Source
- name: Create Local NuGet Directory
run: mkdir ~/nuget
- name: Add Local Nuget Source
run: dotnet nuget add source ~/nuget
# Func.Abstractions.Async
- name: Restore Func.Abstractions.Async
run: dotnet restore ./src/*/*/Func.Abstractions.Async.csproj
- name: Build Func.Abstractions.Async
run: dotnet build ./src/*/*/Func.Abstractions.Async.csproj --no-restore -c Release
- name: Pack Func.Abstractions.Async
run: dotnet pack ./src/*/*/Func.Abstractions.Async.csproj --no-restore -o ~/nuget -c Release
# Func.Abstractions.AsyncValue
- name: Restore Func.Abstractions.AsyncValue
run: dotnet restore ./src/*/*/Func.Abstractions.AsyncValue.csproj
- name: Build Func.Abstractions.AsyncValue
run: dotnet build ./src/*/*/Func.Abstractions.AsyncValue.csproj --no-restore -c Release
- name: Pack Func.Abstractions.AsyncValue
run: dotnet pack ./src/*/*/Func.Abstractions.AsyncValue.csproj --no-restore -o ~/nuget -c Release
# Func.Abstractions.Sync
- name: Restore Func.Abstractions.Sync
run: dotnet restore ./src/*/*/Func.Abstractions.Sync.csproj
- name: Build Func.Abstractions.Sync
run: dotnet build ./src/*/*/Func.Abstractions.Sync.csproj --no-restore -c Release
- name: Pack Func.Abstractions.Sync
run: dotnet pack ./src/*/*/Func.Abstractions.Sync.csproj --no-restore -o ~/nuget -c Release
# Func.Abstractions
- name: Restore Func.Abstractions
run: dotnet restore ./src/*/*/Func.Abstractions.csproj
- name: Build Func.Abstractions
run: dotnet build ./src/*/*/Func.Abstractions.csproj --no-restore -c Release
- name: Pack Func.Abstractions
run: dotnet pack ./src/*/*/Func.Abstractions.csproj --no-restore -o ~/nuget -c Release
# Func.Extensions.Async
- name: Restore Func.Extensions.Async
run: dotnet restore ./src/*/*/Func.Extensions.Async.csproj
- name: Build Func.Extensions.Async
run: dotnet build ./src/*/*/Func.Extensions.Async.csproj --no-restore -c Release
- name: Pack Func.Extensions.Async
run: dotnet pack ./src/*/*/Func.Extensions.Async.csproj --no-restore -o ~/nuget -c Release
- name: Restore Func.Extensions.Async.Tests.Primary
run: dotnet restore ./src/*/*/Func.Extensions.Async.Tests.Primary.csproj
- name: Test Func.Extensions.Async.Tests.Primary
run: dotnet test ./src/*/*/Func.Extensions.Async.Tests.Primary.csproj --no-restore -c Release
- name: Restore Func.Extensions.Async.Tests.DefCancellation
run: dotnet restore ./src/*/*/Func.Extensions.Async.Tests.DefCancellation.csproj
- name: Test Func.Extensions.Async.Tests.DefCancellation
run: dotnet test ./src/*/*/Func.Extensions.Async.Tests.DefCancellation.csproj --no-restore -c Release
# Func.Extensions.AsyncValue
- name: Restore Func.Extensions.AsyncValue
run: dotnet restore ./src/*/*/Func.Extensions.AsyncValue.csproj
- name: Build Func.Extensions.AsyncValue
run: dotnet build ./src/*/*/Func.Extensions.AsyncValue.csproj --no-restore -c Release
- name: Pack Func.Extensions.AsyncValue
run: dotnet pack ./src/*/*/Func.Extensions.AsyncValue.csproj --no-restore -o ~/nuget -c Release
- name: Restore Func.Extensions.AsyncValue.Tests.Primary
run: dotnet restore ./src/*/*/Func.Extensions.AsyncValue.Tests.Primary.csproj
- name: Test Func.Extensions.AsyncValue.Tests.Primary
run: dotnet test ./src/*/*/Func.Extensions.AsyncValue.Tests.Primary.csproj --no-restore -c Release
- name: Restore Func.Extensions.AsyncValue.Tests.DefCancellation
run: dotnet restore ./src/*/*/Func.Extensions.AsyncValue.Tests.DefCancellation.csproj
- name: Test Func.Extensions.AsyncValue.Tests.DefCancellation
run: dotnet test ./src/*/*/Func.Extensions.AsyncValue.Tests.DefCancellation.csproj --no-restore -c Release
# Func.Extensions.Sync
- name: Restore Func.Extensions.Sync
run: dotnet restore ./src/*/*/Func.Extensions.Sync.csproj
- name: Build Func.Extensions.Sync
run: dotnet build ./src/*/*/Func.Extensions.Sync.csproj --no-restore -c Release
- name: Pack Func.Extensions.Sync
run: dotnet pack ./src/*/*/Func.Extensions.Sync.csproj --no-restore -o ~/nuget -c Release
- name: Restore Func.Extensions.Sync.Tests
run: dotnet restore ./src/*/*/Func.Extensions.Sync.Tests.csproj
- name: Test Func.Extensions.Sync.Tests
run: dotnet test ./src/*/*/Func.Extensions.Sync.Tests.csproj --no-restore -c Release
# Func.Extensions
- name: Restore Func.Extensions
run: dotnet restore ./src/*/*/Func.Extensions.csproj
- name: Build Func.Extensions
run: dotnet build ./src/*/*/Func.Extensions.csproj --no-restore -c Release
- name: Pack Func.Extensions
run: dotnet pack ./src/*/*/Func.Extensions.csproj --no-restore -o ~/nuget -c Release
# Push
- name: Push Packages
if: ${{ github.event_name == 'release' }}
run: >
dotnet nuget push "../../../nuget/*.nupkg"
-s https://api.nuget.org/v3/index.json
-k ${{ secrets.NuGetSourcePassword }}
--skip-duplicate