-
Notifications
You must be signed in to change notification settings - Fork 1
90 lines (75 loc) · 2.53 KB
/
build-nuget.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
name: Build Piton NuGet package
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
check-apphost-cache:
name: Check apphost binary cache
runs-on: ubuntu-latest
outputs:
cache-hit: ${{ steps.cache-check.outputs.cache-hit }}
cache-key: ${{ steps.cache-check.outputs.cache-primary-key }}
steps:
- uses: actions/checkout@v4
- uses: actions/cache/restore@v4
id: cache-check
with:
key: apphost-binaries-${{ hashFiles('apphost', '.github/workflows/build-apphost.yml') }}
path: apphost-bin
lookup-only: true
build-apphost:
name: Build apphost binaries
needs: check-apphost-cache
uses: ./.github/workflows/build-apphost.yml
if: ${{ !needs.check-apphost-cache.outputs.cache-hit }}
cache-apphost-binaries:
name: Cache built apphost binaries
runs-on: ubuntu-latest
needs: [check-apphost-cache, build-apphost]
if: ${{ !needs.check-apphost-cache.outputs.cache-hit }}
steps:
- uses: actions/download-artifact@v4
with:
pattern: apphost-*
path: apphost-bin
merge-multiple: true
- uses: actions/cache/save@v4
id: cache-check
with:
key: ${{ needs.check-apphost-cache.outputs.cache-key }}
path: apphost-bin
build-nugetpkg:
name: Build NuGet package
runs-on: ubuntu-latest
needs: [check-apphost-cache, build-apphost]
if: ${{ !cancelled() && (needs.check-apphost-cache.outputs.cache-hit || needs.build-apphost.result == 'success') }}
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
- name: Download Piton apphost binaries (artifact)
uses: actions/download-artifact@v4
if: ${{ !needs.check-apphost-cache.outputs.cache-hit }}
with:
pattern: apphost-*
path: apphost-bin
merge-multiple: true
- name: Download Piton apphost binaries (cache)
uses: actions/cache/restore@v4
id: cache-check
if: ${{ needs.check-apphost-cache.outputs.cache-hit }}
with:
key: ${{ needs.check-apphost-cache.outputs.cache-key }}
path: apphost-bin
fail-on-cache-miss: true
- name: Pack NuGet package
run: dotnet pack -p:TreatWarningsAsErrors=true -p:PitonAppHostBinDir=apphost-bin --output out Piton.NuGet.proj
- uses: actions/upload-artifact@v4
with:
name: piton-nugetpkg
path: out/*.nupkg
if-no-files-found: error