File tree Expand file tree Collapse file tree 4 files changed +11
-9
lines changed
Expand file tree Collapse file tree 4 files changed +11
-9
lines changed Original file line number Diff line number Diff line change 66 build :
77
88 strategy :
9+ fail-fast : false
910 matrix :
1011 os : [windows-latest, macos-latest, ubuntu-latest]
11- dotnet : [3.1.201 ] # TODO: wish this action didn't pin versions...
12+ dotnet : [3.1.301 ] # TODO: wish this action didn't pin versions...
1213 runs-on : ${{ matrix.os }}
1314
1415 steps :
2526 working-directory : ./fcs
2627 - name : Archive code coverage results
2728 uses : actions/upload-artifact@v2
29+ if : always()
2830 with :
2931 name : code-coverage-report
3032 path : ${{ github.workspace }}/artifacts/TestResults/Release/FSharp.Compiler.Service.Test.*.xml
Original file line number Diff line number Diff line change 1515 - name : Setup .NET Core
1616 uses : actions/setup-dotnet@v1
1717 with :
18- dotnet-version : 3.1.201
18+ dotnet-version : 3.1.301
1919 - name : Restore tools
2020 run : dotnet tool restore
2121 working-directory : ./fcs
Original file line number Diff line number Diff line change 1111 strategy :
1212 matrix :
1313 os : [macos-latest]
14- dotnet : [3.1.201 ]
14+ dotnet : [3.1.301 ]
1515 runs-on : ${{ matrix.os }}
1616
1717 steps :
@@ -29,15 +29,15 @@ jobs:
2929 - name : Validate package bump
3030 run : dotnet fake build -s -t ValidateVersionBump
3131 working-directory : ./fcs
32- - name : Publish to nuget
33- run : dotnet fake build -s -t PublishNuget
34- working-directory : ./fcs
35- env :
36- NUGET_APIKEY : ${{ secrets.NUGET_APIKEY }}
3732 - name : Create release
3833 run : dotnet fake build -s -t CreateRelease
3934 working-directory : ./fcs
4035 env :
4136 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
37+ - name : Publish to nuget
38+ run : dotnet fake build -s -t PublishNuget
39+ working-directory : ./fcs
40+ env :
41+ NUGET_APIKEY : ${{ secrets.NUGET_APIKEY }}
4242
4343
Original file line number Diff line number Diff line change 11{
22 "sdk" : {
3- "version" : " 3.1.200 " ,
3+ "version" : " 3.1.301 " ,
44 "rollForward" :" minor"
55 }
66}
You can’t perform that action at this time.
0 commit comments