-
-
Notifications
You must be signed in to change notification settings - Fork 10
29 lines (26 loc) · 1.01 KB
/
nightly.yml
File metadata and controls
29 lines (26 loc) · 1.01 KB
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
on: [push, pull_request]
name: Nightly builds
jobs:
windows:
name: Windows nightly builds
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-dotnet@v4
with:
dotnet-version: 9.0.x
- name: Publish
run: dotnet publish Alpha/Alpha.csproj --output ./artifacts/Alpha
# AOT symbols are huge (>300 MB) so we'll skip them
- name: Publish (AOT)
run: dotnet publish Alpha/Alpha.csproj -p:PublishAot=true -p:PublishTrimmed=true -p:CopyOutputSymbolsToPublishDirectory=false --output ./artifacts/AlphaAOT
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: Alpha
path: ./artifacts/Alpha
- name: Upload artifact (AOT)
uses: actions/upload-artifact@v4
with:
name: AlphaAOT
path: ./artifacts/AlphaAOT