-
-
Notifications
You must be signed in to change notification settings - Fork 42
46 lines (43 loc) · 1.07 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
name: Build
on:
workflow_dispatch:
push:
paths-ignore:
- '**/*'
- '!.github/workflows/build.yml'
- '!src/**/*.csproj'
- '!src/**/*.cs'
branches:
- '*'
pull_request:
paths-ignore:
- '**/*'
- '!.github/workflows/build.yml'
- '!src/**/*.csproj'
- '!src/**/*.cs'
branches:
- '*'
env:
VERSION: 0.8.2.${{ github.run_number }}
jobs:
build:
name: 👌 Verify build
runs-on: ubuntu-latest
steps:
- name: 🛒 Checkout repository
uses: actions/checkout@v3
- name: 🛠️ Build
run: dotnet build -c Release src/Refitter.sln -p:UseSourceLink=true -p:PackageVersion="${{ env.VERSION }}" -p:Version="${{ env.VERSION }}"
- name: 🧪 Test
run: dotnet test src/Refitter.sln -c Release
- name: 🗳️ Upload
uses: actions/upload-artifact@v3
with:
name: Packages
path: |
**/*.nupkg
README.md
- name: 🛠️ Build Docs
run: |
dotnet tool update -g docfx
docfx docs/docfx_project/docfx.json