Skip to content

Commit ecf9cad

Browse files
committed
publish path updates and test logger move to GithubActionTestLogger
1 parent c549e39 commit ecf9cad

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
run: dotnet publish examples/transport-aot-example
4242

4343
- name: Invoke AOT
44-
run: ./examples/transport-aot-example/bin/Release/net10.0/${{ matrix.os.folder }}/${{ matrix.os.binary }}
44+
run: ./examples/transport-aot-example/bin/Release/net10.0/${{ matrix.os.folder }}/publish/${{ matrix.os.binary }}
4545

4646
build:
4747
runs-on: ubuntu-latest

build/scripts/Targets.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ let private pristineCheck (arguments:ParseResults<Arguments>) =
6262
| _ -> failwithf "The checkout folder has pending changes, aborting"
6363

6464
let private test (arguments:ParseResults<Arguments>) =
65-
let loggerArg = "--logger:GithubActionsLogger"
65+
let loggerArg = "--logger:GithubActions"
6666
let tfmArgs =
6767
if getOS = OS.Windows then [] else ["-f"; "net10.0"]
6868
exec "dotnet" (["test"; "-c"; "Release"; loggerArg] @ tfmArgs) |> ignore

0 commit comments

Comments
 (0)