Skip to content

Publish nightly nupkg / Clean up unsupported native AOT flags (#2616) * Clean up unsupported native AOT flags * llcOptimizationPreference was renamed to OptimizationPreference and became supported in .NET 8 (or maybe .NET 7, it doesn't matter) * IlcGenerateStackTraceData is now StackTraceSupport and supported. (Also got renamed in .NET 8 or earlier.) I'm leaving the old names of properties for backcompat. We could also delete them. I don't know how much BDN cares about .NET versions that ... #15

Publish nightly nupkg / Clean up unsupported native AOT flags (#2616) * Clean up unsupported native AOT flags * llcOptimizationPreference was renamed to OptimizationPreference and became supported in .NET 8 (or maybe .NET 7, it doesn't matter) * IlcGenerateStackTraceData is now StackTraceSupport and supported. (Also got renamed in .NET 8 or earlier.) I'm leaving the old names of properties for backcompat. We could also delete them. I don't know how much BDN cares about .NET versions that ...

Publish nightly nupkg / Clean up unsupported native AOT flags (#2616) * Clean up unsupported native AOT flags * llcOptimizationPreference was renamed to OptimizationPreference and became supported in .NET 8 (or maybe .NET 7, it doesn't matter) * IlcGenerateStackTraceData is now StackTraceSupport and supported. (Also got renamed in .NET 8 or earlier.) I'm leaving the old names of properties for backcompat. We could also delete them. I don't know how much BDN cares about .NET versions that ... #15

name: publish-nightly
run-name: Publish nightly nupkg / ${{ github.event.head_commit.message }}
on:
push:
branches:
- master
jobs:
publish:
runs-on: ubuntu-latest
if: ${{ github.repository == 'dotnet/BenchmarkDotNet' }}
steps:
- uses: actions/checkout@v3
- name: Set date
run: echo "DATE=$(date +'%Y%m%d')" >> $GITHUB_ENV
- name: Pack
run: ./build.cmd pack /p:VersionSuffix=nightly.$DATE.$GITHUB_RUN_NUMBER
- name: Upload nupkg to artifacts
uses: actions/upload-artifact@v3
with:
name: nupkgs
path: "**/*.*nupkg"
- name: Publish nupkg
env:
MYGET_API_KEY: ${{ secrets.MYGET_API_KEY }}
run: ./.dotnet/dotnet nuget push **/*.nupkg --source https://www.myget.org/F/benchmarkdotnet/api/v3/index.json --api-key $MYGET_API_KEY --timeout 600