-
Notifications
You must be signed in to change notification settings - Fork 0
33 lines (28 loc) · 775 Bytes
/
build.yml
File metadata and controls
33 lines (28 loc) · 775 Bytes
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
name: Build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Inject slug/short variables
uses: rlespinasse/github-slug-action@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Build
run: |
dotnet tool update -g docfx
dotnet tool restore
python3 deps.py
chmod +x build.sh
./build.sh
- uses: actions/upload-artifact@v4
name: Upload Artifacts
with:
if-no-files-found: error
name: ${{ env.GITHUB_REPOSITORY_NAME_PART_SLUG }}.zip
path: |
**/bin/**/*.dll
output/**/*.zip