File tree Expand file tree Collapse file tree 4 files changed +9
-9
lines changed Expand file tree Collapse file tree 4 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 12
12
jobs :
13
13
publish :
14
14
15
- runs-on : ubuntu-latest
15
+ runs-on : ubuntu-22.04
16
16
17
17
steps :
18
18
- name : Checkout
32
32
33
33
- name : Add version to global.json
34
34
run : |
35
- $version = "8 .0.403 "
35
+ $version = "9 .0.200 "
36
36
$globalJsonPath = "global.json"
37
37
$globalJson = Get-Content -Raw -Path $globalJsonPath | ConvertFrom-Json
38
38
if ($null -eq $globalJson.sdk.version) {
46
46
- name : Install .NET Core
47
47
uses : actions/setup-dotnet@v4
48
48
with :
49
- dotnet-version : 8 .0.403
49
+ dotnet-version : 9 .0.200
50
50
51
51
- name : Add the GitHub source
52
52
run : dotnet nuget add source --username USERNAME --password ${{secrets.GITHUB_TOKEN}} --store-password-in-clear-text --name "github.com" "https://nuget.pkg.github.com/fsprojects/index.json"
Original file line number Diff line number Diff line change 12
12
13
13
jobs :
14
14
publish :
15
- runs-on : ubuntu-latest
15
+ runs-on : ubuntu-22.04
16
16
17
17
steps :
18
18
- name : Checkout
34
34
35
35
- name : Add version to global.json
36
36
run : |
37
- $version = "8 .0.403 "
37
+ $version = "9 .0.200 "
38
38
$globalJsonPath = "global.json"
39
39
$globalJson = Get-Content -Raw -Path $globalJsonPath | ConvertFrom-Json
40
40
if ($null -eq $globalJson.sdk.version) {
48
48
- name : Install .NET Core
49
49
uses : actions/setup-dotnet@v4
50
50
with :
51
- dotnet-version : 8 .0.403
51
+ dotnet-version : 9 .0.200
52
52
53
53
- name : Install local tools
54
54
run : dotnet tool restore
Original file line number Diff line number Diff line change 20
20
strategy :
21
21
fail-fast : false
22
22
matrix :
23
- os : [ubuntu-latest , windows-latest, macOS-latest]
24
- dotnet : [8 .0.403 ]
23
+ os : [ubuntu-22.04 , windows-latest, macOS-latest]
24
+ dotnet : [9 .0.200 ]
25
25
runs-on : ${{ matrix.os }}
26
26
27
27
steps :
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ let ctx = Context.forceFakeContext ()
32
32
let embedAll = ctx.Arguments |> List.exists ( fun arg -> arg = BuildArguments.EmbedAll)
33
33
34
34
module DotNetCli =
35
- let setVersion ( o : DotNet.Options ) = { o with Version = Some " 8 .0.403 " }
35
+ let setVersion ( o : DotNet.Options ) = { o with Version = Some " 9 .0.200 " }
36
36
let setRestoreOptions ( o : DotNet.RestoreOptions ) = o.WithCommon setVersion
37
37
38
38
let configurationString = Environment.environVarOrDefault " CONFIGURATION" " Release"
You can’t perform that action at this time.
0 commit comments