Skip to content

Commit c4c4188

Browse files
author
Petr Sramek
committed
updated artifact download
1 parent e56c942 commit c4c4188

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

.github/workflows/dotnet.yml

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,12 @@ jobs:
4141
with:
4242
dotnet-version: 9.x
4343
- uses: actions/download-artifact@v4
44-
name: Display structure of downloaded files
4544
with:
46-
path: build
47-
run: ls -R
45+
name: build
46+
path: .
47+
merge-multiple: true
48+
- name: Display structure of downloaded files
49+
run: ls -R path/to/artifacts
4850
- name: Test
4951
run: dotnet test --no-build --verbosity normal
5052

@@ -67,6 +69,11 @@ jobs:
6769
uses: actions/setup-dotnet@v3
6870
with:
6971
dotnet-version: 9.x
72+
- uses: actions/download-artifact@v4
73+
with:
74+
name: build
75+
path: .
76+
merge-multiple: true
7077
- name: Decode Benchmark
7178
working-directory: ./benchmarks/PolylineAlgorithm.Benchmarks
7279
run: dotnet run -c Release --no-restore --framework net9.0 --runtimes net9.0 --filter '*DecodeBenchmark*'

0 commit comments

Comments
 (0)