Update packaging to 8.0 version (#1575) #265
This file contains 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
name: AOT | |
permissions: | |
pull-requests: write | |
on: | |
push: | |
branches: [ main, release/* ] | |
pull_request: | |
# The branches below must be a subset of the branches above | |
branches: [ main ] | |
env: | |
PublishAot: true | |
Configuration: RELEASE | |
jobs: | |
benchmark: | |
name: Samples | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-dotnet@v3 | |
- name: SunburstChartExample | |
run: dotnet publish samples/SunburstChartExample/ -f net7.0 /p:SummaryOutDir=$GITHUB_WORKSPACE/summary | |
- name: LinqSvgExample | |
run: dotnet publish samples/Linq/SvgExample -f net7.0 /p:SummaryOutDir=$GITHUB_WORKSPACE/summary | |
- name: ThreadedCommentExample | |
run: dotnet publish samples/ThreadedCommentExample/ -f net7.0 /p:SummaryOutDir=$GITHUB_WORKSPACE/summary | |
- name: Write summary | |
run: | | |
cd $GITHUB_WORKSPACE/summary | |
for FILE in *.summary.md | |
do | |
cat ${FILE} >> $GITHUB_STEP_SUMMARY | |
done |