Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/main-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
run: dotnet ../benchmarks/Fastenshtein.Benchmarking/bin/Release/net10.0/Fastenshtein.Benchmarking.dll

- name: Upload benchmarks results
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: benchmarks-results-${{ matrix.os }}
path: release/BenchmarkDotNet.Artifacts
Expand All @@ -64,23 +64,23 @@ jobs:
files: release/coverage.net10.xml release/coverage.net481.xml

- name: Upload dotnet info
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
if: env.TEST_COVERAGE == 'true'
with:
name: Built with
path: release/dotnet_info.txt
if-no-files-found: error

- name: Upload test coverage
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
if: env.TEST_COVERAGE == 'true'
with:
name: test coverage
path: release/coverage.*.xml
if-no-files-found: error

- name: Upload NuGet packages
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
if: env.TEST_COVERAGE == 'true'
with:
name: NuGet packages
Expand Down