-
Notifications
You must be signed in to change notification settings - Fork 1
72 lines (59 loc) · 2.03 KB
/
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
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
name: Build
on:
workflow_call:
inputs:
buildStaticSite:
required: false
type: boolean
default: false
packNugetPackage:
required: false
type: boolean
default: false
jobs:
build:
runs-on: ubuntu-latest
name: .NET Build & Test
steps:
- uses: actions/checkout@v3
- name: Setup .NET SDK
uses: actions/setup-dotnet@v3
with:
dotnet-version: |
6.0.x
7.0.x
- name: Restore dependencies
run: dotnet restore
- name: Create build number
run: |
now=$(date +'%Y%m%d')
buildNumber=$now.$GITHUB_RUN_NUMBER
echo "BUILD_NUMBER=$buildNumber" >> $GITHUB_ENV
echo "$buildNumber"
- name: Build
run: dotnet build --configuration Release --no-restore -p:BuildNumber=$BUILD_NUMBER -p:SourceRevisionId=$GITHUB_SHA -p:ContinuousIntegrationBuild=true
- name: Test
run: dotnet test --configuration Release --no-restore --no-build --verbosity normal
- name: Pack (ci)
run: dotnet pack --configuration Release --output ./artifacts/ci --verbosity normal -p:BuildNumber=$BUILD_NUMBER -p:SourceRevisionId=$GITHUB_SHA -p:ContinuousIntegrationBuild=true
- name: Pack (nuget)
if: ${{ inputs.packNugetPackage }}
run: dotnet pack --configuration Release --output ./artifacts/ship --verbosity normal -p:BuildNumber=$BUILD_NUMBER -p:SourceRevisionId=$GITHUB_SHA -p:ContinuousIntegrationBuild=true -p:IsNugetPackage=true
- name: Upload artifacts (packages)
uses: actions/upload-artifact@master
with:
name: nupkg
path: ./artifacts/**/*.nupkg
retention-days: 5
- name: DocFX Build
if: ${{ inputs.buildStaticSite }}
run: |
dotnet tool update -g docfx
docfx ./docs/docfx.json
- name: Upload artifacts (github pages)
if: ${{ inputs.buildStaticSite }}
uses: actions/upload-artifact@master
with:
name: documentation
path: ./docs/_site/
retention-days: 5