We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d52d330 commit ea526f1Copy full SHA for ea526f1
.github/workflows/dotnetcore.yml
@@ -5,12 +5,9 @@ on:
5
branches: [ master ]
6
pull_request:
7
8
- repository_dispatch:
9
- types: [matrix-ci]
10
11
jobs:
12
build:
13
- if: github.event != 'repository_dispatch'
14
runs-on: ${{ matrix.image }}
15
strategy:
16
matrix:
@@ -24,19 +21,3 @@ jobs:
24
21
dotnet-version: 3.1.101
25
22
- name: Build with dotnet
26
23
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
0 commit comments