File tree 4 files changed +11
-9
lines changed
4 files changed +11
-9
lines changed Original file line number Diff line number Diff line change 6
6
build :
7
7
8
8
strategy :
9
+ fail-fast : false
9
10
matrix :
10
11
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...
12
13
runs-on : ${{ matrix.os }}
13
14
14
15
steps :
25
26
working-directory : ./fcs
26
27
- name : Archive code coverage results
27
28
uses : actions/upload-artifact@v2
29
+ if : always()
28
30
with :
29
31
name : code-coverage-report
30
32
path : ${{ github.workspace }}/artifacts/TestResults/Release/FSharp.Compiler.Service.Test.*.xml
Original file line number Diff line number Diff line change 15
15
- name : Setup .NET Core
16
16
uses : actions/setup-dotnet@v1
17
17
with :
18
- dotnet-version : 3.1.201
18
+ dotnet-version : 3.1.301
19
19
- name : Restore tools
20
20
run : dotnet tool restore
21
21
working-directory : ./fcs
Original file line number Diff line number Diff line change 11
11
strategy :
12
12
matrix :
13
13
os : [macos-latest]
14
- dotnet : [3.1.201 ]
14
+ dotnet : [3.1.301 ]
15
15
runs-on : ${{ matrix.os }}
16
16
17
17
steps :
@@ -29,15 +29,15 @@ jobs:
29
29
- name : Validate package bump
30
30
run : dotnet fake build -s -t ValidateVersionBump
31
31
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 }}
37
32
- name : Create release
38
33
run : dotnet fake build -s -t CreateRelease
39
34
working-directory : ./fcs
40
35
env :
41
36
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 }}
42
42
43
43
Original file line number Diff line number Diff line change 1
1
{
2
2
"sdk" : {
3
- "version" : " 3.1.200 " ,
3
+ "version" : " 3.1.301 " ,
4
4
"rollForward" :" minor"
5
5
}
6
6
}
You can’t perform that action at this time.
0 commit comments