-
-
Notifications
You must be signed in to change notification settings - Fork 17
62 lines (58 loc) · 1.46 KB
/
ci.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
on:
push:
branches:
- master
- develop
- "feature/**"
- "release/**"
- "hotfix/**"
tags:
- "*.*.*"
paths-ignore:
- "README.md"
pull_request:
workflow_dispatch:
env:
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
DOTNET_CLI_TELEMETRY_OPTOUT: true
DOTNET_NOLOGO: true
jobs:
build:
strategy:
fail-fast: false
matrix:
job:
- os: ubuntu-18.04
build: ./build.sh
- os: ubuntu-20.04
build: ./build.sh
- os: windows-2019
build: ./build.cmd
push: true
- os: windows-2022
build: ./build.cmd
- os: macos-10.15
build: ./build.sh
- os: macos-11
build: ./build.sh
name: ${{ matrix.job.os }}
runs-on: ${{ matrix.job.os }}
steps:
- name: Setup net5.0
uses: actions/[email protected]
with:
dotnet-version: "5.0.401"
- name: Run dotnet --info
run: dotnet --info
- uses: actions/[email protected]
with:
fetch-depth: 0
- name: Build
run: ${{ matrix.job.build }} --verbosity=diagnostic --target=pack
- name: Publish artifacts
if: matrix.job.push && (github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/'))
uses: actions/[email protected]
with:
if-no-files-found: warn
name: package
path: artifact/nuget/**/*