1313 name : Testing
1414 strategy :
1515 matrix :
16- dotnet : [ 'netcoreapp3.1', 'net5.0', ' net6.0', 'net7.0' ]
16+ dotnet : [ 'net6.0', 'net7.0' ]
1717 steps :
1818 - name : Checkout code base
1919 uses : actions/checkout@v2
2929 runs-on : windows-latest
3030 name : Building
3131 strategy :
32- matrix :
33- dotnet : [ 'netcoreapp3.1', 'net5.0', ' net6.0', 'net7.0' ]
32+ matrix :
33+ dotnet : [ 'net6.0', 'net7.0' ]
3434 steps :
3535 - name : Checkout code base
3636 uses : actions/checkout@v2
@@ -59,17 +59,17 @@ jobs:
5959 name : Generate docs and publish artifacts
6060 needs : ['build']
6161 steps :
62- - name : Get cache - net5 .0
62+ - name : Get cache - net6 .0
6363 uses : actions/cache@v2
6464 with :
65- path : build/net5 .0
66- key : ${{ runner.os }}-build-net5 .0
67-
68- - name : Get cache - netcoreapp3.1
65+ path : build/net6 .0
66+ key : ${{ runner.os }}-build-net6 .0
67+
68+ - name : Get cache - net7.0
6969 uses : actions/cache@v2
7070 with :
71- path : build/netcoreapp3.1
72- key : ${{ runner.os }}-build-netcoreapp3.1
71+ path : build/net7.0
72+ key : ${{ runner.os }}-build-net7.0
7373
7474 - uses : actions/setup-dotnet@v3
7575 with :
@@ -79,14 +79,14 @@ jobs:
7979 run : dotnet new tool-manifest && dotnet tool install EAVFW.Extensions.Docs.TransformToMarkdown
8080
8181 - name : Generate docs
82- run : dotnet tool run tomd --input build/net5 .0/ExpressionEngine.xml --output Documentation.md
82+ run : dotnet tool run tomd --input build/net7 .0/ExpressionEngine.xml --output Documentation.md
8383
8484 - name : Archive build to artifacts
8585 uses : actions/upload-artifact@v2.3.1
8686 with :
8787 name : Build
8888 path : |
89- build/netcoreapp3.1 /
90- build/net5 .0/
89+ build/net6.0 /
90+ build/net7 .0/
9191 Documentation.md
9292 retention-days : 5
0 commit comments