-
Notifications
You must be signed in to change notification settings - Fork 3
40 lines (38 loc) · 896 Bytes
/
build.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
name: .NET Build
on:
push:
paths:
- 'docs/**'
- 'src/**'
- 'libs/**'
- 'examples/**'
- 'tools/**'
pull_request:
paths:
- 'docs/**'
- 'src/**'
- 'libs/**'
- 'examples/**'
- 'tools/**'
env:
DOTNET_NOLOGO: 1
DOTNET_CLI_TELEMETRY_OPTOUT: 1
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1
DOTNET_SYSTEM_GLOBALIZATION_INVARIANT: 1
jobs:
build_and_publish:
name: Build
runs-on: self-hosted
if: "!contains(format('{0} {1}', github.event.head_commit.message, github.event.pull_request.title), '[ci-skip]')"
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: '0'
submodules: recursive
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 7
- name: Build
run: "dotnet build"