File tree Expand file tree Collapse file tree 1 file changed +19
-1
lines changed Expand file tree Collapse file tree 1 file changed +19
-1
lines changed Original file line number Diff line number Diff line change 5
5
branches : [ master ]
6
6
pull_request :
7
7
branches : [ master ]
8
+ repository_dispatch :
9
+ types : [matrix-ci]
8
10
9
11
jobs :
10
12
build :
11
-
13
+ if : github.event != 'repository_dispatch'
12
14
runs-on : ${{ matrix.image }}
13
15
strategy :
14
16
matrix :
22
24
dotnet-version : 3.1.101
23
25
- name : Build with dotnet
24
26
run : dotnet build --configuration Release
27
+
28
+ build-2 :
29
+ if : github.event == 'repository_dispatch'
30
+ runs-on : ${{ matrix.image }}
31
+ strategy :
32
+ matrix :
33
+ image : ${{ github.event.client_payload.images }}
34
+
35
+ steps :
36
+ - uses : actions/checkout@v2
37
+ - name : Setup .NET Core
38
+ uses : actions/setup-dotnet@v1
39
+ with :
40
+ dotnet-version : 3.1.101
41
+ - name : Build with dotnet
42
+ run : dotnet build --configuration Release
You can’t perform that action at this time.
0 commit comments