-
Notifications
You must be signed in to change notification settings - Fork 3
59 lines (46 loc) · 1.24 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
name: Build
on: [push]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ macos-latest, ubuntu-latest, windows-latest ]
steps:
- uses: actions/checkout@v3
- name: Setup .NET Core SDK
uses: actions/setup-dotnet@v3
with:
dotnet-version: '7.0.x'
- name: Build
working-directory: ${{github.workspace}}
run: ./make.ps1
shell: pwsh
- name: Upload Binaries
uses: actions/upload-artifact@v3
with:
path: ${{github.workspace}}/runtimes/*
pack:
runs-on: ubuntu-latest
needs: [build]
steps:
- uses: actions/checkout@v3
- uses: actions/download-artifact@v3
with:
name: artifact
path: ${{github.workspace}}/runtimes
- name: Setup .NET Core SDK
uses: actions/setup-dotnet@v3
with:
dotnet-version: '7.0.x'
- name: Pack
run: dotnet pack -c Release
- name: Upload .nupkg
uses: actions/upload-artifact@v3
with:
path: ${{github.workspace}}/TinyEmbree/bin/**/*.nupkg
- name: Publish on version change
uses: alirezanet/[email protected]
with:
PROJECT_FILE_PATH: TinyEmbree/TinyEmbree.csproj
NUGET_KEY: ${{secrets.NUGET_API_KEY}}