NativeAOT builds #126
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 | |
| - name: Publish (AOT) | |
| run: dotnet publish Alpha/Alpha.csproj -p:PublishAot=true -p:PublishTrimmed=true --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 |